-
Notifications
You must be signed in to change notification settings - Fork 0
/
gemmaparamwidget.h
executable file
·53 lines (43 loc) · 1.22 KB
/
gemmaparamwidget.h
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
44
45
46
47
48
49
50
51
52
53
#ifndef GEMMAPARAMWIDGET_H
#define GEMMAPARAMWIDGET_H
#include <QWidget>
#include <QButtonGroup>
#include <QStringList>
#include <QMap>
namespace Ui {
class GemmaParamWidget;
}
class GemmaParamWidget : public QWidget
{
Q_OBJECT
public:
explicit GemmaParamWidget(QWidget *parent = nullptr);
~GemmaParamWidget();
bool isMakeRelatedMatAuto(void);
bool isCentRelatedMat(void);
bool isStdRelatedMat(void);
bool isWaldTest(void);
bool isLikelihoodRatioTest(void);
bool isScoreTest(void);
bool isAllTest(void);
bool isStdLinearBSLMM(void);
bool isRidgeRegreBSLMM(void);
bool isProbitBSLMM(void);
bool isFamCompletedAuto(void);
QMap<QString, QString> getCurrentParam(void);
QString getCorrectionType(void);
void setLmmParamEnabled(bool boolean);
void setBslmmParamEnabled(bool boolean);
private slots:
void on_noKinRadioButton_clicked();
void on_yesKinRadioButton_clicked();
private:
Ui::GemmaParamWidget *ui;
QButtonGroup *kinAutoBtnGroup;
QButtonGroup *kinMatrixBtnGroup;
QButtonGroup *lmmTestBtnGroup;
QButtonGroup *bslmmModelBtnGroup;
QButtonGroup *famCompleteBtnGroup;
QButtonGroup *correctBtnGroup;
};
#endif // GEMMAPARAMWIDGET_H