Skip to content

Commit

Permalink
update output log
Browse files Browse the repository at this point in the history
  • Loading branch information
reednel committed Jan 16, 2024
1 parent a31103b commit 6f8f4e9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/minaa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ int main(int argc, char* argv[])
FileIO::out(log, "Y_M_D-H_M_S: " + datetime + "\n");
FileIO::out(log, "\n");
FileIO::out(log, "INPUTS\n");
FileIO::out(log, "G File: " + g_name + ".csv\n");
FileIO::out(log, "H File: " + h_name + ".csv\n");
if (do_bio) FileIO::out(log, "Bio File: " + bio_name + ".csv\n"); // double .csv if no alias
FileIO::out(log, "Alpha: " + Util::to_string(alpha, 3) + "\n");
FileIO::out(log, "Beta: " + Util::to_string(beta, 3) + "\n");
FileIO::out(log, "G File: " + g_name + ".csv\n");
FileIO::out(log, "H File: " + h_name + ".csv\n");
if (do_bio) FileIO::out(log, "Bio File: " + bio_name + ".csv\n"); // double .csv if no alias
FileIO::out(log, "Alpha: " + Util::to_string(alpha, 3) + "\n");
FileIO::out(log, "Beta: " + Util::to_string(beta, 3) + "\n");
FileIO::out(log, "Similarity threshold: " + Util::to_string(similarity_threshold, 4) + "\n");
FileIO::out(log, "\n");

FileIO::out(log, "BEGINNING ALIGNMENT\n");
Expand Down

0 comments on commit 6f8f4e9

Please sign in to comment.