Created
September 16, 2020 15:41
-
-
Save stephanmg/1bed6eba540a3710da5d60888d0c701a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# number of neurons | |
numNeurons=100 | |
# get neurons | |
for index in $(seq 1 "$numNeurons"); do | |
python get_swc.py --search "brain_region=neocortex" \ | |
--filter "cell_type=pyramidal" \ | |
--filter "archive=Hrvoj-Mihic_Semendeferi" \ | |
--index "$index" | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment