23 lines
399 B
Python
23 lines
399 B
Python
|
|
import sys
|
|
|
|
from PyQt5.QtWidgets import QApplication
|
|
|
|
from SpikeRedetectGui import SpikeRedetectGui
|
|
|
|
|
|
test_file = "../neuronModel/data/final_sam/2010-11-08-al-invivo-1"
|
|
sam_file = "../neuronModel/data/final_sam/2011-10-25-ad-invivo-1"
|
|
# TODO CLI
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
|
|
ex = SpikeRedetectGui(test_file)
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|