Skip to content

Commit

Permalink
Fix conditions missing from web site
Browse files Browse the repository at this point in the history
Fixes problem with with 29e7f69

Refs pombase/website#2029
  • Loading branch information
kimrutherford committed Nov 22, 2023
1 parent 683d3c8 commit 8c96fe3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/PomBase/Import/Canto.pm
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,7 @@ sub _store_ontology_annotation {
my $real_termid = $self->_get_real_termid($termid);

$self->add_feature_cvtermprop($feature_cvterm, condition => $real_termid, $i);
$self->add_feature_cvtermprop($feature_cvterm, condition_detail => $real_termid, $i);
}
}

Expand Down
1 change: 1 addition & 0 deletions lib/PomBase/Import/Quantitative.pm
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ sub load {
for (my $i = 0; $i < @conditions; $i++) {
my $condition = $conditions[$i];
$self->add_feature_cvtermprop($feature_cvterm, 'condition', $condition, $i);
$self->add_feature_cvtermprop($feature_cvterm, 'condition_detail', $condition, $i);
}
}

Expand Down

0 comments on commit 8c96fe3

Please sign in to comment.