forked from ModelDBRepository/267187
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
44 additions
and
24 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
#!/bin/bash | ||
set -ex | ||
|
||
# Format the code | ||
black *.py | ||
|
||
# This script loads in the XPP using the parser in pyNeuroML, and converts the channels to NeuroML | ||
# It will also run a test simulation of the cells and save the results | ||
# NOTE: make sure to update to a recent version of pyNeuroML! | ||
python GenerateNeuroML.py -jnml | ||
|
||
python TestXPP.py | ||
|
||
# This will use the generated NeuroML cells and create networks with a number of (unconnected cells) and | ||
# inject current steps into them to replicate the currnt clamp protocols in Figs 4C and 7B in the paper | ||
python GenerateExamples.py -jnml | ||
|
||
# This will load the original XPP using pyNeuroML, run it, save the results and plot them against the | ||
# results generated by the NeuroML in GenerateNeuroML.py | ||
python TestXPP.py | ||
|
||
omv all -V | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters