diff options
author | Pjotr Prins | 2020-05-22 11:21:45 -0500 |
---|---|---|
committer | Pjotr Prins | 2020-05-22 11:21:45 -0500 |
commit | f1cd914e6f20c9a162e16d7283477c1b98d005d1 (patch) | |
tree | 0a23068f9b06525ded025450c209b3a1dcf94b38 /src/gemma_io.cpp | |
parent | 862ace03212ed17bdc1ab349bfab55543720a980 (diff) | |
parent | b309569fe9497befa008ac2d2cbc04f2e861ce76 (diff) | |
download | pangemma-f1cd914e6f20c9a162e16d7283477c1b98d005d1.tar.gz |
Merge branch 'master' of github.com:genenetwork/GEMMA
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); |