Skip to content

Commit

Permalink
Update EPO alignment name
Browse files Browse the repository at this point in the history
Co-authored-by: CristiGuijarro <cristig@ebi.ac.uk>
  • Loading branch information
james-monkeyshines and CristiGuijarro committed May 28, 2020
1 parent b9fa65d commit 42398ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Bio/EnsEMBL/DataCheck/Checks/MLSSTagGERP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use constant {
sub skip_tests {
my ($self) = @_;
my $mlss_adap = $self->dba->get_MethodLinkSpeciesSetAdaptor;
my @methods = qw( EPO EPO_LOW_COVERAGE );
my @methods = qw( EPO EPO_EXTENDED );
my $db_name = $self->dba->dbc->dbname;

my @mlsses;
Expand Down
8 changes: 4 additions & 4 deletions lib/Bio/EnsEMBL/DataCheck/Checks/MLSSTagMultipleAlignment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use constant {
sub skip_tests {
my ($self) = @_;
my $mlss_adap = $self->dba->get_MethodLinkSpeciesSetAdaptor;
my @methods = qw( EPO EPO_LOW_COVERAGE PECAN );
my @methods = qw( EPO EPO_EXTENDED PECAN );
my $db_name = $self->dba->dbc->dbname;

my @mlsses;
Expand All @@ -65,9 +65,9 @@ sub tests {
has_tags($self->dba, 'PECAN', $tags);

push @$tags, 'base_mlss_id';
has_tags($self->dba, 'EPO_LOW_COVERAGE', $tags);
has_tags($self->dba, 'EPO_EXTENDED', $tags);

my $desc = "Low coverage alignments tagged with base MSA MLSS ID";
my $desc = "Extended multiple sequence alignments tagged with base MSA MLSS ID";
my $sql = qq/
SELECT
mlss1.method_link_species_set_id,
Expand All @@ -86,7 +86,7 @@ sub tests {
type = "EPO"
) mlss2 ON mlsst.value = mlss2.method_link_species_set_id
WHERE
ml1.type = "EPO_LOW_COVERAGE" AND
ml1.type = "EPO_EXTENDED" AND
mlsst.tag = "base_mlss_id" AND
mlss2.method_link_species_set_id IS NULL
/;
Expand Down

0 comments on commit 42398ed

Please sign in to comment.