Skip to content

Commit

Permalink
Fixes genetic map search returning 0 result
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldtan committed Jan 11, 2023
1 parent 353161b commit 7331165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/GeneticMapSearch.inc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class GeneticMapSearch extends KPSEARCH {

// -- Population Type.
if ($filter_results['pop_type'] != '') {
$where[] = "pop_type.value ~ :pop_type";
$where[] = "pop_type.value = :pop_type";
$args[':pop_type'] = $filter_results['pop_type'];
}

Expand Down

0 comments on commit 7331165

Please sign in to comment.