diff options
Diffstat (limited to 'src/gemma.h')
-rw-r--r-- | src/gemma.h | 17 |
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 |