Skip to content

Commit

Permalink
Allow collecting extensions by display name
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Nov 26, 2024
1 parent f663ef9 commit 9d5a390
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pombase/web/cv_summary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ pub fn collect_ext_summary_genes(rel_range: &str, rows: &mut Vec<TermSummaryRow>
match ext_part.ext_range {
ExtRange::SummaryGenes(_) | ExtRange::SummaryTranscripts(_) | ExtRange::SummaryTerms(_) |
ExtRange::ModifiedResidues(_) =>
rel_range == ext_part.rel_type_name.as_str(),
rel_range == ext_part.rel_type_name.as_str() ||
rel_range == ext_part.rel_type_display_name.as_str(),
_ =>false
}
};
Expand Down

0 comments on commit 9d5a390

Please sign in to comment.