diff options
| author | Pjotr Prins | 2025-11-26 13:26:54 +0100 |
|---|---|---|
| committer | Pjotr Prins | 2025-11-26 13:26:54 +0100 |
| commit | cf4f018bd350c8202aef2ee085a2c536097895b4 (patch) | |
| tree | de59a01f23d98ab523e2ae9450b278ad0dae3fde /src/gemma_io.cpp | |
| parent | 806a01c27a1fd366c120820de0c38caea1d4cdcd (diff) | |
| download | pangemma-cf4f018bd350c8202aef2ee085a2c536097895b4.tar.gz | |
Fix progress bar and test larger file
Diffstat (limited to 'src/gemma_io.cpp')
| -rw-r--r-- | src/gemma_io.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gemma_io.cpp b/src/gemma_io.cpp index 3bec483..3826cea 100644 --- a/src/gemma_io.cpp +++ b/src/gemma_io.cpp @@ -61,7 +61,7 @@ void ProgressBar(string str, double p, double total, double ratio) { const double progress = (100.0 * p / total); const uint barsize = (int)(progress / 2.0); // characters // cout << barsize << endl; - // cout << str << " "; + cout << str << " "; // cout << p << "/" << total << endl; assert(barsize < 101); // corrupted data somehow if (barsize > 0) { @@ -1348,7 +1348,7 @@ void ReadFile_kin(const string &file_kin, vector<int> &indicator_idv, infile.close(); infile.clear(); - checkpoint("read-kinship-file",file_kin); + checkpoint("end-read-file-kin",file_kin); return; } |
