18 lines
427 B
Python
18 lines
427 B
Python
|
|
import sys
|
|
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
|
|
|
|
from spike_redetection.DataProvider import DataProvider
|
|
from spike_redetection.SpikeRedetectGui import SpikeRedetectGui
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
data_provider = DataProvider("../data/final_sam/2010-11-08-al-invivo-1")
|
|
ex = SpikeRedetectGui(data_provider)
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|