From d5fd96f3e650958b8046cad2aad2a0f71517397c Mon Sep 17 00:00:00 2001 From: EnfxcFCb6 Date: Mon, 2 Jun 2025 17:39:46 -0400 Subject: [PATCH 1/2] Standardized README to Markdown format --- README.html | 71 ----------------------------------------------------- README.md | 53 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 71 deletions(-) delete mode 100644 README.html create mode 100644 README.md diff --git a/README.html b/README.html deleted file mode 100644 index 617607a..0000000 --- a/README.html +++ /dev/null @@ -1,71 +0,0 @@ -
-Simulation of single-compartment Hodgkin-Huxley models for different
-classes of cortical neurons
-
-The models are described in:
-
-   Pospischil, M., Toledo-Rodriguez, M., Monier, C., Piwkowska, Z., 
-   Bal, T., Fregnac, Y., Markram, H. and Destexhe, A.
-   Minimal Hodgkin-Huxley type models for different classes of
-   cortical and thalamic neurons.
-   Biological Cybernetics 99: 427-441, 2008.
-
-Intrinsic currents: INa, IKd for action potentials, IM for
-spike-frequency adaptation, ICaL for high-threshold calcium current,
-ICaT for the low-threshold calcium current, intracellular calcium
-dynamics.  
-
-demo_PY_RS.oc : simplified model of the "regular-spiking" neuron
-demo_IN_FS.oc : simplified model of the "fast-spiking" interneuron
-demo_PY_IB.oc : simplified model of the "intrinsically bursting" neuron
-demo_PY_IBR.oc : simplified model of the "repetive bursting" neuron
-demo_PY_LTS.oc : simplified model of the "low-threshold spike" neurons
-
-Usage:
-------
-
-Simply auto-launch from ModelDB (after NEURON is installed) or
-download and extract the archive.  Then under
-
-linux/unix:
------------
-
-cd to the extracted folder.  Type at the shell prompt:
-
-nrnivmodl
-nrngui mosinit.hoc
-
-MAC OS X:
----------
-
-Drag and drop the extracted folder onto the mknrndll icon.  Drag and
-drop the mosinit.hoc file onto the nrngui icon.
-
-mswin:
-------
-
-Run mknrndll and cd to the extracted folder. Select to make the
-nrnmech.dll.  Use windows explorer to view the contents of the
-expanded folder from the archive. Double click on the mosinit.hoc
-file.
-
-Once the simulation is started:
--------------------------------
-
-Click on a button to select a cell.  Reposition the windows and press
-the Init & Run button.
-
-For example selecting Bursting Pyramidal Cell and then Init & Run
-should produce a figure like figure 5B from the paper:
-
-fig 5B appears here
-
-20111102 The file IL_gutnick.mod was updated to use derivimplicit in the
-solver.  See http://www.neuron.yale.edu/phpBB/viewtopic.php?f=28&t=592
-for details.
-
-20120216 the files IM_cortex.mod, IT_huguenard.mod, and
-cadecay_destexhe.mod had solver methods updated from euler to cnexp,
-cnexp, and derivimplicit respectively.  The IL_gutnick.mod was changed
-from derivimplicit to cnexp. See www.neuron.yale.edu phpBB link above.
-
diff --git a/README.md b/README.md new file mode 100644 index 0000000..1d8b96e --- /dev/null +++ b/README.md @@ -0,0 +1,53 @@ +# Simulation of single-compartment Hodgkin-Huxley models for different classes of cortical neurons + +The models are described in: + +Pospischil, M., Toledo-Rodriguez, M., Monier, C., Piwkowska, Z., +Bal, T., Fregnac, Y., Markram, H. and Destexhe, A. +Minimal Hodgkin-Huxley type models for different classes of cortical and thalamic neurons. +*Biological Cybernetics* 99: 427-441, 2008. + +Intrinsic currents: INa, IKd for action potentials, IM for spike-frequency adaptation, ICaL for high-threshold calcium current, ICaT for the low-threshold calcium current, intracellular calcium dynamics. + +- demo_PY_RS.oc : simplified model of the "regular-spiking" neuron +- demo_IN_FS.oc : simplified model of the "fast-spiking" interneuron +- demo_PY_IB.oc : simplified model of the "intrinsically bursting" neuron +- demo_PY_IBR.oc : simplified model of the "repetive bursting" neuron +- demo_PY_LTS.oc : simplified model of the "low-threshold spike" neurons + +## Usage: + +Simply auto-launch from ModelDB (after NEURON is installed) or download and extract the archive. Then under + +### linux/unix: + +cd to the extracted folder. Type at the shell prompt: + +``` +nrnivmodl +nrngui mosinit.hoc +``` + +### MAC OS X: + +Drag and drop the extracted folder onto the mknrndll icon. Drag and drop the mosinit.hoc file onto the nrngui icon. + +### mswin: + +Run mknrndll and cd to the extracted folder. Select to make the nrnmech.dll. Use windows explorer to view the contents of the expanded folder from the archive. Double click on the mosinit.hoc file. + +## Once the simulation is started: + +Click on a button to select a cell. Reposition the windows and press the Init & Run button. + +For example selecting Bursting Pyramidal Cell and then Init & Run should produce a figure like figure 5B from the paper: + +![fig 5B appears here](./fig5b.jpg) + +20111102 The file IL_gutnick.mod was updated to use derivimplicit in the solver. See [http://www.neuron.yale.edu/phpBB/viewtopic.php?f=28&t=592](http://www.neuron.yale.edu/phpBB/viewtopic.php?f=28&t=592) for details. + +20120216 the files IM_cortex.mod, IT_huguenard.mod, and cadecay_destexhe.mod had solver methods updated from euler to cnexp, cnexp, and derivimplicit respectively. The IL_gutnick.mod was changed from derivimplicit to cnexp. See www.neuron.yale.edu phpBB link above. + +--- + +2025-06-02: Converted README to Markdown. \ No newline at end of file From 0ecf7e8579ac8632d6b5896687206689172ea3cd Mon Sep 17 00:00:00 2001 From: rsakai Date: Mon, 2 Jun 2025 17:50:05 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d8b96e..46bf5dc 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,9 @@ For example selecting Bursting Pyramidal Cell and then Init & Run should produce ![fig 5B appears here](./fig5b.jpg) +--- 20111102 The file IL_gutnick.mod was updated to use derivimplicit in the solver. See [http://www.neuron.yale.edu/phpBB/viewtopic.php?f=28&t=592](http://www.neuron.yale.edu/phpBB/viewtopic.php?f=28&t=592) for details. 20120216 the files IM_cortex.mod, IT_huguenard.mod, and cadecay_destexhe.mod had solver methods updated from euler to cnexp, cnexp, and derivimplicit respectively. The IL_gutnick.mod was changed from derivimplicit to cnexp. See www.neuron.yale.edu phpBB link above. ---- - -2025-06-02: Converted README to Markdown. \ No newline at end of file +20250602 Converted README to Markdown.