Skip to content

Commit f155303

Browse files
committed
the FDR threshold is now listed when using --tune
1 parent 9e05d09 commit f155303

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ int main_wrapper(int argc, const char *argv[]) {
113113
(double)shuffled_coverage[best_coverage_index] / (double)seq_length;
114114
double fdr = false_coverage / real_coverage;
115115

116-
printf("Best coverage within FDR limit: %.5f, %.5f, %s\n", real_coverage,
116+
printf("Best coverage within FDR limit (%f): %.5f, %.5f, %s\n", settings->tune_fdr, real_coverage,
117117
fdr, param_strings[best_coverage_index].c_str());
118118

119119
delete settings;
@@ -126,7 +126,7 @@ int main_wrapper(int argc, const char *argv[]) {
126126
}
127127
settings->assign_settings();
128128
} else {
129-
printf("No parameters found within FDR limit.\n");
129+
printf("No parameters found within FDR limit (%f).\n", settings->tune_fdr);
130130
exit(0);
131131
}
132132

0 commit comments

Comments
 (0)