Skip to content

Commit

Permalink
register peakwaveforms?
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisSanchez25 committed May 16, 2024
1 parent 590c5c3 commit 5e0585e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion amstrax/plugins/peaks/peak_waveforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PeakWaveforms(strax.Plugin):
depends_on = ('records',)
data_kind = 'peaks'
parallel = 'process'
provides = ('peak_waveforms')
provides = ('peak_waveforms',)
rechunk_on_save = True

__version__ = '0.1.50'
Expand Down
2 changes: 1 addition & 1 deletion amstrax/plugins/peaks/peaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Peaks(strax.Plugin):
curious or just want to test it or try it out but note this is note ready to be used in
analysis.
"""
depends_on = ('peak_waveforms','peaks_som')
depends_on = ('peak_waveforms', 'peaks_som')
data_kind = 'peaks'
# parallel = 'process'
provides = ('peaks')
Expand Down
2 changes: 1 addition & 1 deletion amstrax/plugins/peaks/peaks_som.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PeaksSOM(PeakWaveforms):

__version__ = "0.2.0"
depends_on = ('peak_waveforms')
#data_kind = 'peaks'
data_kind = 'peaks'
#parallel = 'process'
provides = ('peaks_som')
#rechunk_on_save = True
Expand Down

0 comments on commit 5e0585e

Please sign in to comment.