Skip to content

Commit

Permalink
fix: Parsing of ‘false negative rate’ string in evaluate-overlap [App…
Browse files Browse the repository at this point in the history
…lications]
  • Loading branch information
schuhschuh committed Nov 2, 2017
1 parent a833e94 commit cf264db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Applications/src/evaluate-overlap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ istream &operator >>(istream &is, OverlapMetric &metric)
metric = FalsePositiveRate;
} else if (str == "fdr" || str == "falsediscoveryrate" || str == "false discovery rate") {
metric = FalseDiscoveryRate;
} else if (str == "fnr" || str == "falsenegativerate" || str == "falsenegativerate" || str == "missrate" || str == "miss rate") {
} else if (str == "fnr" || str == "falsenegativerate" || str == "false negative rate" || str == "missrate" || str == "miss rate") {
metric = FalseNegativeRate;
} else if (str == "accuracy") {
metric = Accuracy;
Expand Down

0 comments on commit cf264db

Please sign in to comment.