Skip to content

Commit

Permalink
Merge pull request #339 from brunocontrerasmoreira/bugfix/104
Browse files Browse the repository at this point in the history
add MD5 so that string comparison is case sensitive
  • Loading branch information
marcoooo committed Jan 15, 2021
2 parents 382b909 + 326943b commit 4f69125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Bio/EnsEMBL/DataCheck/Checks/MetaKeyAssembly.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=head1 LICENSE
Copyright [2018-2020] EMBL-European Bioinformatics Institute
Copyright [2018-2021] EMBL-European Bioinformatics Institute
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -53,7 +53,7 @@ sub tests {
cs.attrib RLIKE 'default_version' AND
at.code = 'toplevel' AND
m.meta_key = 'assembly.default' AND
cs.version <> m.meta_value AND
BINARY(cs.version) <> BINARY(m.meta_value) AND
m.species_id = $species_id AND
cs.species_id = $species_id
GROUP BY
Expand Down

0 comments on commit 4f69125

Please sign in to comment.