Skip to content

Commit

Permalink
Fix types for fields of InterProMatch
Browse files Browse the repository at this point in the history
Refs #2203
  • Loading branch information
kimrutherford committed Oct 24, 2024
1 parent 2f1d0f3 commit 41becaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pombase-api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@ export interface InterProMatch {
description?: string;
evidence: string;
interpro_id?: string;
interpro_name: string;
interpro_type: string;
interpro_name?: string;
interpro_description?: string;
match_start: number;
match_end: number;
locations: Array<InterProMatchLocation>;
Expand Down

0 comments on commit 41becaa

Please sign in to comment.