Skip to content

Commit

Permalink
Merge pull request #180 from BlueBrain/singlecell-example
Browse files Browse the repository at this point in the history
adapt singlecell example to macos
  • Loading branch information
AurelienJaquier authored Jan 9, 2025
2 parents dccd16d + 884efaa commit 626f780
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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

0 comments on commit 626f780

Please sign in to comment.