diff options
author | Pjotr Prins | 2025-01-03 01:35:06 -0600 |
---|---|---|
committer | Pjotr Prins | 2025-01-03 01:35:50 -0600 |
commit | 53530c209c17fe1f3b37513b53c2f0ef9a491dc3 (patch) | |
tree | 9860e4954fad775277bf0dad10a88c8381e02331 /src/gemma_io.cpp | |
parent | 1db223ea71837a0cdfcb881411a5a4cd685a7dae (diff) | |
download | pangemma-53530c209c17fe1f3b37513b53c2f0ef9a491dc3.tar.gz |
Adding support for checkpoints and relevant documentation
Diffstat (limited to 'src/gemma_io.cpp')
-rw-r--r-- | src/gemma_io.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gemma_io.cpp b/src/gemma_io.cpp index b11bf88..698d3e2 100644 --- a/src/gemma_io.cpp +++ b/src/gemma_io.cpp @@ -42,6 +42,7 @@ #include "gsl/gsl_matrix.h" #include "gsl/gsl_vector.h" +#include "checkpoint.h" #include "debug.h" // #include "eigenlib.h" #include "fastblas.h" @@ -552,6 +553,7 @@ bool ReadFile_bim(const string &file_bim, vector<SNPINFO> &snpInfo) { infile.close(); infile.clear(); + checkpoint("read-bimbam-file",file_bim); return true; } @@ -869,6 +871,7 @@ bool ReadFile_geno(const string &file_geno, const set<string> &setSnps, infile.close(); infile.clear(); + checkpoint("read-geno-file",file_geno); return true; } |