Skip to content

Commit 2dfc737

Browse files
authored
Merge pull request #191 from h-mayorquin/format_black
Move to src structure and pre-commit format
2 parents cedafaa + 60bdf3f commit 2dfc737

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+667
-670
lines changed

.github/workflows/full_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
with:
3232
token: ${{ secrets.CODECOV_TOKEN }}
3333
fail_ci_if_error: true
34-
file: ./coverage.xml
34+
file: ./coverage.xml

.github/workflows/publish-to-pypi.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python 3.8
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v4
1616
with:
17-
python-version: 3.8
17+
python-version: "3.10"
1818
- name: Install Tools
1919
run: |
2020
python -m pip install --upgrade pip

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ doc/examples/*
2323

2424
dev_*
2525
.coverage
26-
cov.xml
26+
cov.xml

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build:
55

66
sphinx:
77
configuration: doc/conf.py
8-
8+
99
python:
1010
version: 3.8
1111
install:

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,3 @@ Target users/projet :
7979

8080

8181
Author: Samuel Garcia
82-

doc/api.rst

+14-15
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ Probe
1010

1111
.. autoclass:: probeinterface.Probe
1212
:members:
13-
13+
1414
ProbeGroup
1515
----------
1616

1717
.. automodule:: probeinterface
18-
18+
1919
.. autoclass:: probeinterface.ProbeGroup
2020
:members:
2121

@@ -27,19 +27,19 @@ Import/export to formats
2727
.. autofunction:: read_probeinterface
2828

2929
.. autofunction:: write_probeinterface
30-
30+
3131
.. autofunction:: read_prb
32-
32+
3333
.. autofunction:: write_prb
34-
34+
3535
.. autofunction:: read_csv
36-
36+
3737
.. autofunction:: write_csv
38-
38+
3939
.. autofunction:: read_spikeglx
40-
40+
4141
.. autofunction:: read_mearec
42-
42+
4343
.. autofunction:: read_nwb
4444

4545

@@ -49,13 +49,13 @@ Probe generators
4949
.. automodule:: probeinterface.generator
5050

5151
.. autofunction:: generate_dummy_probe
52-
52+
5353
.. autofunction:: generate_dummy_probe_group
54-
54+
5555
.. autofunction:: generate_tetrode
56-
56+
5757
.. autofunction:: generate_multi_columns_probe
58-
58+
5959
.. autofunction:: generate_linear_probe
6060

6161
Plotting
@@ -64,7 +64,7 @@ Plotting
6464
.. automodule:: probeinterface.plotting
6565

6666
.. autofunction:: plot_probe
67-
67+
6868
.. autofunction:: plot_probe_group
6969

7070
Library
@@ -73,4 +73,3 @@ Library
7373
.. automodule:: probeinterface.library
7474

7575
.. autofunction:: get_probe
76-

doc/index.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ The :code:`probeinterface` package also provides:
1717
* basic plotting functions with matplotlib
1818
* input/output functions to several formats (PRB, NWB, CSV, MEArec, SpikeGLX, ...)
1919

20-
Here is a schema for the naming used in the package:
20+
Here is a schema for the naming used in the package:
2121

2222
.. image:: img/probeinterface_naming.png
2323
:width: 400 px
2424

2525

26-
26+
2727
.. include:: examples/index.rst
28-
28+
2929
.. toctree::
3030
:caption: Contents:
3131
:maxdepth: 1
32-
32+
3333
overview
3434
examples/index.rst
3535
format_spec

doc/library.rst

-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,3 @@ TODO: explain with more details
2828
5. Ask for an account
2929
6. Push to a branch with gin client
3030
7. Make a pull request on the gin portal (like a github PR)
31-
32-
33-

doc/overview.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This package also provide:
5858
* generator functions to create user-defined probes
5959

6060

61-
Goal 1
61+
Goal 1
6262
---------
6363

6464
This common interface could be used by several projects for spike sorting and electrophysiology analysis:

doc/release_notes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release notes
55

66
.. toctree::
77
:maxdepth: 1
8-
8+
99
releases/0.2.16.rst
1010
releases/0.2.15.rst
1111
releases/0.2.14.rst

doc/releases/0.1.0.rst

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ probeinterface 0.1.0
44
11th jan 2021
55

66
Initial release.
7-

doc/releases/0.2.0.rst

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ probeinterface 0.2.0
44
March, 2 2021
55

66
Format improvement with all ids in str.
7-

doc/releases/0.2.1.rst

-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ March, 24 2021
77
* to_numpy()/from_numpy()
88
* to_dataframe()/from_dataframe()
99
* read_mearec
10-

doc/releases/0.2.10.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ September, 1st 2022
1010
* implement read_imro() / write_imro()
1111
* Add new wiring : 'ASSY-77>Adpt.A64-Om32_2x-sm>two_RHD2132'
1212
* Handle OpenEphys NPIX with multiple probes
13-
* Add cross-checked ASSY-116>RHD2132 mapping
13+
* Add cross-checked ASSY-116>RHD2132 mapping

doc/releases/0.2.14.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ October, 27th 2022
77
* Fix a **important bug** in :code:`read_spikeglx()` / :code:`read_imro()` that was leading
88
to wrong contact locations when the Imec Readout Table (aka imRo)
99
was set with complex multi-bank patterns.
10-
The bug was introduced with version **0.2.10**, released on September 1st 2022, and it is also present in these
10+
The bug was introduced with version **0.2.10**, released on September 1st 2022, and it is also present in these
1111
versions: **0.2.10**, **0.2.11**, **0.2.12**, and **0.2.13**.
1212

13-
**If you used spikeinterface/probeinterface with SpikeGLX data using one of these versions, we recommend you
14-
to check your contact positions (if they are non-standard - using the probe tip) and re-run your spike-sorting
13+
**If you used spikeinterface/probeinterface with SpikeGLX data using one of these versions, we recommend you
14+
to check your contact positions (if they are non-standard - using the probe tip) and re-run your spike-sorting
1515
analysis if they are wrong.**
1616

17-
A big thanks to Tom Bugnon and Graham Findlay for
17+
A big thanks to Tom Bugnon and Graham Findlay for
1818
`spotting the bug <https://github.com/SpikeInterface/probeinterface/issues/141>`_.

doc/releases/0.2.2.rst

-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ April, 4 2021
77
* write_prb handle group_mode
88
* add wriring RDH2164
99
* doc improvement
10-

doc/releases/0.2.3.rst

-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ May, 21 2021
66
* add a pathway
77
* show_channel_on_click
88
* debug read_mearec()
9-
10-

doc/releases/0.2.4.rst

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ July, 30 2021
66
* expose read_maxwell function
77
* vector annotations
88
* changes to BIDS format
9-

doc/releases/0.2.5.rst

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ September, 14 2021
55

66
* vector annotations added to numpy representation
77
* add "electrode" to annotations from read_maxwell
8-

doc/releases/0.2.6.rst

-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ November, 26 2021
66
* documention improvement
77
* spikeglx neuropixel2 integration
88
* plotting improvement
9-
10-

doc/releases/0.2.7.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@ probeinterface 0.2.7
55
March, 1 2022
66

77
* add read_3brain to io
8-
* annotate spikeGLX with probe version
9-
10-
8+
* annotate spikeGLX with probe version

doc/releases/0.2.8.rst

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,4 @@ March, 23rd 2022
88
* expose function select_dimensions (2d>3d and 3d>2d)
99
* add to_dict/from_dict in ProbeGroup
1010
* Add "text_on_contact" in plot_probe()
11-
* Add read_openephys function for Neuropux-PXI plugin
12-
13-
14-
11+
* Add read_openephys function for Neuropux-PXI plugin

examples/README.rst

-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,3 @@ Examples
22
---------------
33

44
Start here with a tutorial showing probeinterface.
5-
6-
7-

examples/ex_02_probe_2d_probe_3d.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
##############################################################################
3434
# Let's transform it into a 3d probe.
35-
#
35+
#
3636
# Here the axes are 'xz' so y will be 0 for all contacts.
3737
# The shape of probe_3d.contact_positions is now (n_elec, 3)
3838

examples/ex_03_generate_probe_group.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
##############################################################################
2020
# Generate 2 dummy `Probe` objects with the utils function:
21-
#
21+
#
2222

2323
probe0 = generate_dummy_probe(elec_shapes='square')
2424
probe1 = generate_dummy_probe(elec_shapes='circle')

examples/ex_06_import_export_to_file.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
* PRB (.prb) : used by klusta/spyking-circus/tridesclous
1414
* CSV (.csv): 2 or 3 columns locations in text file
15-
* mearec (.h5) : mearec handles the geometry
15+
* mearec (.h5) : mearec handles the geometry
1616
* spikeglx (.meta) : spikeglx also handles the geometry
1717
1818
"""

examples/ex_07_probe_generator.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
##############################################################################
2323
# Generate 4 tetrodes:
24-
#
24+
#
2525

2626
from probeinterface import generate_tetrode
2727

@@ -39,7 +39,7 @@
3939

4040
##############################################################################
4141
# Generate a linear probe:
42-
#
42+
#
4343

4444
from probeinterface import generate_linear_probe
4545

@@ -48,7 +48,7 @@
4848

4949
##############################################################################
5050
# Generate a multi-column probe:
51-
#
51+
#
5252

5353
from probeinterface import generate_multi_columns_probe
5454

@@ -61,7 +61,7 @@
6161

6262
##############################################################################
6363
# Generate a square probe:
64-
#
64+
#
6565

6666
square_probe = generate_multi_columns_probe(num_columns=12,
6767
num_contact_per_column=12,

examples/ex_11_automatic_wiring.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
##############################################################################
2727
# We can "wire" this probe to a recording device.
2828
# Imagine we connect this Neuronexus probe with an Omnetic to an Intan RHD headstage.
29-
#
29+
#
3030
# Using the wiring documentation from these two sites:
3131
# https://neuronexus.com/wp-content/uploads/2018/09/Wiring_H32.pdf
3232
# http://intantech.com/RHD_headstages.html?tabSelect=RHD32ch&yPos=0
33-
#
33+
#
3434
# After a long headache we can figure out the wiring to the device manually and set it
3535
# using the `probe.set_device_channel_indices()` function:
3636

probeinterface/__init__.py

-22
This file was deleted.

pyproject.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ build-backend = "setuptools.build_meta"
3333

3434
[tool.setuptools]
3535
packages = ["probeinterface"]
36-
package-dir = {"probeinterface" = "probeinterface"}
36+
package-dir = {"probeinterface" = "src/probeinterface"}
3737

3838

3939
[project.optional-dependencies]
@@ -58,4 +58,8 @@ docs = [
5858
[tool.coverage.run]
5959
omit = [
6060
"tests/*",
61-
]
61+
]
62+
63+
64+
[tool.black]
65+
line-length = 120

0 commit comments

Comments
 (0)