Skip to content

Commit

Permalink
Merge cef5244 into 2334f5b
Browse files Browse the repository at this point in the history
  • Loading branch information
james-monkeyshines committed Aug 10, 2020
2 parents 2334f5b + cef5244 commit 8ec7346
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/Bio/EnsEMBL/DataCheck/Checks/DisplayXrefExists.pm
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ use constant {
sub skip_tests {
my ($self) = @_;

if ( $self->dba->get_division ne 'vertebrates' ) {
my $mca = $self->dba->get_adaptor('MetaContainer');
my $division = $mca->get_division;
if ($division ne 'EnsemblVertebrates') {
return( 1, "Display xrefs are not typically expected for non-vertebrates" );
}
}
Expand Down

0 comments on commit 8ec7346

Please sign in to comment.