Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
netpyne
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Valery Bragin
netpyne
Commits
c4ea2fed
Unverified
Commit
c4ea2fed
authored
2 years ago
by
Valeriy Bragin
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Plain Diff
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
Branches containing commit
Tags
v1.0.4.1
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES.md
+6
-0
6 additions, 0 deletions
CHANGES.md
doc/source/conf.py
+2
-2
2 additions, 2 deletions
doc/source/conf.py
netpyne/__init__.py
+1
-1
1 addition, 1 deletion
netpyne/__init__.py
netpyne/analysis/dipole.py
+2
-1
2 additions, 1 deletion
netpyne/analysis/dipole.py
with
11 additions
and
4 deletions
CHANGES.md
+
6
−
0
View file @
c4ea2fed
# Version 1.0.4.1
**New features**
-
Added env variable to define head model placement
# Version 1.0.4
**New features**
...
...
This diff is collapsed.
Click to expand it.
doc/source/conf.py
+
2
−
2
View file @
c4ea2fed
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
netpyne/__init__.py
+
1
−
1
View file @
c4ea2fed
...
...
@@ -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
'
)
...
...
This diff is collapsed.
Click to expand it.
netpyne/analysis/dipole.py
+
2
−
1
View file @
c4ea2fed
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment