aboutsummaryrefslogtreecommitdiff
path: root/src/gemma.h
diff options
context:
space:
mode:
authorPeter Carbonetto2017-06-07 23:23:35 -0500
committerPeter Carbonetto2017-06-07 23:23:35 -0500
commit93a7a2adb03f61e80badf6a5004fa4850dbb7d48 (patch)
tree72eb62acf1bc21000cd969e62658261590eab36e /src/gemma.h
parent35e4ee4767c35c2436fea81788742641172ada37 (diff)
downloadpangemma-93a7a2adb03f61e80badf6a5004fa4850dbb7d48.tar.gz
Removed FORCE_FLOAT from a few more files.
Diffstat (limited to 'src/gemma.h')
-rw-r--r--src/gemma.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/gemma.h b/src/gemma.h
index acb1309..8393470 100644
--- a/src/gemma.h
+++ b/src/gemma.h
@@ -1,6 +1,6 @@
/*
- Genome-wide Efficient Mixed Model Association (GEMMA)
- Copyright (C) 2011 Xiang Zhou
+ Genome-wide Efficient Mixed Model Association (GEMMA)
+ Copyright (C) 2011-2017, Xiang Zhou
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -13,32 +13,28 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GEMMA_H__
#define __GEMMA_H__
-#ifdef FORCE_FLOAT
-#include "param_float.h"
-#else
#include "param.h"
-#endif
using namespace std;
class GEMMA {
public:
- //parameters
+ // Parameters.
string version;
string date;
string year;
- //constructor
+ // Constructor.
GEMMA(void);
- //functions
+ // Functions.
void PrintHeader (void);
void PrintHelp (size_t option);
void PrintLicense (void);
@@ -47,6 +43,5 @@ public:
void WriteLog (int argc, char **argv, PARAM &cPar);
};
-
#endif