Skip to content

Commit

Permalink
Merge pull request #1036 from aparton/ENSVAR-4303
Browse files Browse the repository at this point in the history
Sort order of processing of frequency keys
  • Loading branch information
sarahhunt committed Aug 12, 2021
2 parents 8e7c835 + 059530a commit 1c0a85a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/Bio/EnsEMBL/VEP/OutputFactory.pm
Expand Up @@ -1116,8 +1116,8 @@ sub add_colocated_frequency_data {

my $max_af = 0;
my @max_af_pops;

foreach my $group(@keys) {
foreach my $group(sort @keys) {
foreach my $key(grep {$ex->{$_}} @{$FREQUENCY_KEYS{$group}}) {

my %freq_data;
Expand Down

0 comments on commit 1c0a85a

Please sign in to comment.