Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/simplecell/download_ephys_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ FILES_TO_DOWNLOAD=(
mkdir -p "$DEST_DIR"

# Fetch the list of files from the GitHub API and filter for required files
FILES=$(curl -s "$BASE_API" | grep -oP "\"path\": \"$FOLDER/.*?\.ibw\"" | grep -oP "(?<=\"$FOLDER/)[^\"]+")
FILES=$(curl -s "$BASE_API" | grep -oE "\"path\": \"$FOLDER/[^\"]*\.ibw")

# Download each file if it matches the list to download
for file in $FILES; do
Expand Down
4 changes: 3 additions & 1 deletion examples/simplecell/simplecell.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
"\n",
"However, here we will present the rheobase independent approach which means that we use specific amplitude values like `IDRest_1.0` (indicating a fixed current of 1.0 nA) instead of `IDRest_100` (which represents 100% of the rheobase).\n",
"\n",
"For rheobase dependent optimisation or additional details, please refer to the [L5PC](./../L5PC/) example."
"For rheobase dependent optimisation or additional details, please refer to the [L5PC](./../L5PC/) example.\n",
"\n",
"Please note that in this example we will use only the two NEURON-inbuilt HH channels for simplicity. As such, the output model will not be able to accurately reproduce the experimental traces, but the optimisation will demonstrate its ability to produce at least a spiking model. "
]
},
{
Expand Down
Loading