diff options
author | Pjotr Prins | 2020-05-22 07:15:37 -0500 |
---|---|---|
committer | Pjotr Prins | 2020-05-22 07:15:37 -0500 |
commit | 8c82a8294483ffac4d8e9635376723f26a8ae27b (patch) | |
tree | c987e3646be820fe703452ad250979e4f3c112a9 /src/gemma_io.cpp | |
parent | f112b0fa5f29651b5af8cb3bd1c2933f010c2960 (diff) | |
download | pangemma-8c82a8294483ffac4d8e9635376723f26a8ae27b.tar.gz |
Fixes for gcc (GCC) 10.1.0
Started to remove eigenlib (again)
Diffstat (limited to 'src/gemma_io.cpp')
-rw-r--r-- | src/gemma_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gemma_io.cpp b/src/gemma_io.cpp index 3c71ea6..2380d45 100644 --- a/src/gemma_io.cpp +++ b/src/gemma_io.cpp @@ -1470,7 +1470,7 @@ bool BimbamKin(const string file_geno, const set<string> ksnps, gsl_vector_set(geno_miss, i, 0); n_miss++; } else { - double d = stod(field); + double d = atof(field); if (is_strict_mode() && d == 0.0) enforce_is_float(std::string(field)); // rule out non NA and non-float fields gsl_vector_set(geno, i, d); |