-
Notifications
You must be signed in to change notification settings - Fork 0
/
LPPtiger.py
33 lines (28 loc) · 1.07 KB
/
LPPtiger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016-2017 SysMedOs_team @ AG Bioanalytik, University of Leipzig:
# SysMedOs_team: Zhixu Ni, Georgia Angelidou, Maria Fedorova
# LPPtiger is Dual-licensed
# For academic and non-commercial use: `GPLv2 License` Please read more information by the following link:
# [The GNU General Public License version 2] (https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
# For commercial use:
# please contact the SysMedOs_team by email.
# Please cite our publication in an appropriate form.
#
# For more info please contact:
# SysMedOs_team: [email protected]
# LPPtiger repository: https://bitbucket.org/SysMedOs/lpptiger
# Developer Zhixu Ni [email protected]
#
import os
import sys
import multiprocessing
from PySide import QtGui
from LibLPPtiger.LPPtiger_Main import LPPtigerMain
if __name__ == '__main__':
multiprocessing.freeze_support()
usr_cwd = os.getcwd()
gui = QtGui.QApplication(sys.argv)
LPPtiger = LPPtigerMain(cwd=usr_cwd)
LPPtiger.show()
sys.exit(gui.exec_())