Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rchikhi committed Jun 27, 2017
1 parent 48629b2 commit ab4f1dd
Show file tree
Hide file tree
Showing 2 changed files with 6,902 additions and 6,902 deletions.
2 changes: 1 addition & 1 deletion tools/tigops/src/tigops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ string create_cov_id_header(float cov_mean = 0, string sample_name = "", float c
if (cov_median == 0)
s = "_mean_" + to_string_p(cov_mean) + "_ID_" + sample_name; // legacy tigops
else
s = "_mean_" + to_string_p(cov_mean) + "_median_" + to_string_p(cov_median) + "_nbkmers_" + to_string_p(cov_num) + "_ID_" + sample_name; // advanced tigops with median/number of kmers
s = "_mean_" + to_string_p(cov_mean) + "_median_" + to_string_p(cov_median) + + "_sd_" + to_string_p(cov_sd) + "_nbkmers_" + to_string_p(cov_num) + "_ID_" + sample_name; // advanced tigops with median/number of kmers
return s;
}

Expand Down
Loading

0 comments on commit ab4f1dd

Please sign in to comment.