-
Notifications
You must be signed in to change notification settings - Fork 1
/
LPPtiger2.py
43 lines (37 loc) · 1.53 KB
/
LPPtiger2.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
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
#
# Copyright (C) 2021-2022 LMAI_team @ TU Dresden:
# LMAI_team: Zhixu Ni, Maria Fedorova
# Copyright (C) 2016-2021 SysMedOs_team @ AG Bioanalytik, University of Leipzig:
# SysMedOs_team: Zhixu Ni, Georgia Angelidou, Maria Fedorova
#
# LPPtiger2 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 LMAI_team by email.
# https://tu-dresden.de/med/mf/zml/forschungsgruppen/fedorova/mitarbeiter-innen-der-fedorova-gruppe
#
# Please cite our publication in an appropriate form:
# Ni, Zhixu, Georgia Angelidou, Ralf Hoffmann, and Maria Fedorova.
# LPPtiger software for lipidome-specific prediction
# and hunter of oxidized phospholipids from LC-MS datasets
# Scientific Reports 7, Article number: 15138 (2017).
# DOI: 10.1038/s41598-017-15363-z
#
# For more info please contact:
# Developer Zhixu Ni [email protected]
# LPPtiger2 repository: https://github.com/LMAI-TUD/lpptiger2
#
import multiprocessing
import os
import sys
from PySide6.QtWidgets import QApplication, QMainWindow
from libtiger.tiger.tiger_core import TigerMainWindow
if __name__ == "__main__":
multiprocessing.freeze_support()
usr_cwd = os.getcwd()
app = QApplication(sys.argv)
window = TigerMainWindow(tiger_cwd=usr_cwd)
window.show()
sys.exit(app.exec())