Skip to content

Commit

Permalink
Plotting (#274)
Browse files Browse the repository at this point in the history
* bump

* register led default

* refactor rundb

* plotting tools

* plugins and analyses

* fix auto processing

* fix auto processing

* fix newlines

* fix requirements

* fix requirements

* try to get tests ok

* try tests

* no
  • Loading branch information
cfuselli authored Sep 20, 2023
1 parent e373239 commit 2282ff2
Show file tree
Hide file tree
Showing 32 changed files with 2,735 additions and 485 deletions.
13 changes: 9 additions & 4 deletions amstrax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
__version__ = '1.2.0'

from . import plugins
from .plugins import *
__version__ = "1.2.1"

from .common import *
from .rundb import *

from . import plugins
from .plugins import *

from . import contexts

from . import hitfinder_thresholds
from .hitfinder_thresholds import *

from . import auto_processing

from .mini_analysis import *

from .matplotlib_utils import *

from . import analyses
4 changes: 4 additions & 0 deletions amstrax/analyses/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from . import plotting
from . import waveform_plot
from . import records_matrix
from . import quick_checks
Loading

0 comments on commit 2282ff2

Please sign in to comment.