Skip to content

Commit

Permalink
Fix other update
Browse files Browse the repository at this point in the history
  • Loading branch information
dglemos authored and likhitha-surapaneni committed Nov 25, 2024
1 parent bfac10d commit a6786e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/VEP/OutputFactory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ sub BaseTranscriptVariationAllele_to_output_hash {
# basics
$hash->{Feature_type} = 'Transcript';
$hash->{Feature} = $tr->stable_id if $tr;
$hash->{Feature} .= '.'.$tr->version if $hash->{Feature} && $self->{transcript_version} && $hash->{Feature} !~ /\.\d+$/;
$hash->{Feature} .= '.'.$tr->version if $hash->{Feature} && $self->{transcript_version} && $tr->version && $hash->{Feature} !~ /\.\d+$/;

# get gene
$hash->{Gene} = $tr->{_gene_stable_id};
Expand Down

0 comments on commit a6786e4

Please sign in to comment.