Skip to content
Snippets Groups Projects
Unverified Commit c4ea2fed authored by Valeriy Bragin's avatar Valeriy Bragin Committed by GitHub
Browse files

Merge pull request #751 from suny-downstate-medical-center/release/v1.0.4.1

Release v1.0.4.1
parents 4bf6a9d7 2412d7e1
No related branches found
Tags v1.0.4.1
No related merge requests found
# Version 1.0.4.1
**New features**
- Added env variable to define head model placement
# Version 1.0.4
**New features**
......
......@@ -67,9 +67,9 @@ copyright = '' #2019, Salvador Dura-Bernal (Neurosim lab)'
# built documents.
#
# The short X.Y version.
version = '1.0.4'
version = '1.0.4.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.4'
release = '1.0.4.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......
......@@ -4,7 +4,7 @@ NetPyNE (Networks using Python and NEURON) is a Python package to facilitate the
NetPyNE consists of a number of sub-packages and modules.
"""
__version__ = '1.0.4'
__version__ = '1.0.4.1'
import os, sys
display = os.getenv('DISPLAY')
......
......@@ -8,6 +8,7 @@ from __future__ import division
from __future__ import unicode_literals
from __future__ import absolute_import
import os
from builtins import range
from builtins import round
from builtins import str
......@@ -89,7 +90,7 @@ def plotEEG(
from lfpykit.eegmegcalc import NYHeadModel
nyhead = NYHeadModel()
nyhead = NYHeadModel(nyhead_file=os.getenv('NP_LFPYKIT_HEAD_FILE', None))
# dipole_location = 'parietal_lobe' # predefined location from NYHead class
nyhead.set_dipole_pos(dipole_location)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment