bmtool 0.6.9.22__tar.gz → 0.6.9.23__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/PKG-INFO +1 -1
  2. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/connectors.py +2 -2
  3. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool.egg-info/PKG-INFO +1 -1
  4. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/setup.py +1 -1
  5. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/LICENSE +0 -0
  6. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/README.md +0 -0
  7. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/SLURM.py +0 -0
  8. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/__init__.py +0 -0
  9. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/__main__.py +0 -0
  10. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/analysis/__init__.py +0 -0
  11. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/analysis/lfp.py +0 -0
  12. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/analysis/netcon_reports.py +0 -0
  13. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/analysis/spikes.py +0 -0
  14. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/bmplot.py +0 -0
  15. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/debug/__init__.py +0 -0
  16. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/debug/commands.py +0 -0
  17. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/debug/debug.py +0 -0
  18. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/graphs.py +0 -0
  19. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/manage.py +0 -0
  20. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/plot_commands.py +0 -0
  21. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/singlecell.py +0 -0
  22. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/synapses.py +0 -0
  23. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/util/__init__.py +0 -0
  24. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/util/commands.py +0 -0
  25. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/util/neuron/__init__.py +0 -0
  26. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/util/neuron/celltuner.py +0 -0
  27. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool/util/util.py +0 -0
  28. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool.egg-info/SOURCES.txt +0 -0
  29. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool.egg-info/dependency_links.txt +0 -0
  30. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool.egg-info/entry_points.txt +0 -0
  31. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool.egg-info/requires.txt +0 -0
  32. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/bmtool.egg-info/top_level.txt +0 -0
  33. {bmtool-0.6.9.22 → bmtool-0.6.9.23}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bmtool
3
- Version: 0.6.9.22
3
+ Version: 0.6.9.23
4
4
  Summary: BMTool
5
5
  Home-page: https://github.com/cyneuro/bmtool
6
6
  Download-URL:
@@ -1424,8 +1424,8 @@ class CorrelatedGapJunction(GapJunction):
1424
1424
  """
1425
1425
 
1426
1426
  def __init__(self, p_non=1., p_uni=1., p_rec=1., p_arg=None,
1427
- connector=None, verbose=True):
1428
- super().__init__(p=p_non, p_arg=p_arg, verbose=verbose)
1427
+ connector=None, verbose=True,save_report=True,report_name=None):
1428
+ super().__init__(p=p_non, p_arg=p_arg, verbose=verbose,save_report=save_report,report_name=None)
1429
1429
  self.vars['p_non'] = self.vars.pop('p')
1430
1430
  self.vars['p_uni'] = p_uni
1431
1431
  self.vars['p_rec'] = p_rec
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bmtool
3
- Version: 0.6.9.22
3
+ Version: 0.6.9.23
4
4
  Summary: BMTool
5
5
  Home-page: https://github.com/cyneuro/bmtool
6
6
  Download-URL:
@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
6
6
 
7
7
  setup(
8
8
  name="bmtool",
9
- version='0.6.9.22',
9
+ version='0.6.9.23',
10
10
  author="Neural Engineering Laboratory at the University of Missouri",
11
11
  author_email="gregglickert@mail.missouri.edu",
12
12
  description="BMTool",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes