Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Apr 23, 2024
1 parent 388a70d commit 327b73a
Show file tree
Hide file tree
Showing 18 changed files with 2 additions and 13 deletions.
Binary file modified db_templates/curs_db_template.sqlite3
Binary file not shown.
Binary file modified db_templates/ontology_index_dir/segments
Binary file not shown.
Binary file modified db_templates/track_db_template.sqlite3
Binary file not shown.
15 changes: 2 additions & 13 deletions lib/Canto/CursDB/Allele.pm
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ __PACKAGE__->table("allele");
data_type: 'text'
is_nullable: 1
=head2 exogenous_promoter
data_type: 'text'
is_nullable: 1
=head2 gene
data_type: 'integer'
Expand Down Expand Up @@ -104,8 +99,6 @@ __PACKAGE__->add_columns(
{ data_type => "text", is_nullable => 1 },
"promoter_gene",
{ data_type => "text", is_nullable => 1 },
"exogenous_promoter",
{ data_type => "text", is_nullable => 1 },
"gene",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
);
Expand Down Expand Up @@ -204,8 +197,8 @@ __PACKAGE__->belongs_to(
);


# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-03-18 12:05:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XzWBGRf7AOA0gkFW5u5qcg
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-23 15:38:48
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zwunCW+YljT30wPa79v39A

__PACKAGE__->many_to_many('genotypes' => 'allele_genotypes',
'genotype');
Expand Down Expand Up @@ -255,10 +248,6 @@ sub long_identifier
$ret .= '{promoter:' . $self->promoter_gene() . '}';
}

if ($self->exogenous_promoter()) {
$ret .= '{exogenous_promoter:' . $self->exogenous_promoter() . '}';
}

return $ret;
}

Expand Down
Binary file modified t/data/curs_aaaa0001.sqlite3
Binary file not shown.
Binary file modified t/data/curs_aaaa0002.sqlite3
Binary file not shown.
Binary file modified t/data/curs_aaaa0003.sqlite3
Binary file not shown.
Binary file modified t/data/curs_aaaa0004.sqlite3
Binary file not shown.
Binary file modified t/data/curs_aaaa0005.sqlite3
Binary file not shown.
Binary file modified t/data/curs_aaaa0006.sqlite3
Binary file not shown.
Binary file modified t/data/curs_aaaa0007.sqlite3
Binary file not shown.
Binary file modified t/data/ontology_index/segments
Binary file not shown.
Binary file modified t/data/track_0_curs_test_template.sqlite3
Binary file not shown.
Binary file modified t/data/track_1_curs_test_template.sqlite3
Binary file not shown.
Binary file modified t/data/track_3_curs_test_template.sqlite3
Binary file not shown.
Binary file modified t/data/track_curs_annotations_1_test_template.sqlite3
Binary file not shown.
Binary file modified t/data/track_curs_annotations_2_test_template.sqlite3
Binary file not shown.
Binary file modified t/data/track_empty_db_test_template.sqlite3
Binary file not shown.

0 comments on commit 327b73a

Please sign in to comment.