Skip to content

Commit

Permalink
Update splice_module.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
birndle authored Nov 29, 2016
1 parent 28a4843 commit 6a99f18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions splice_module.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
sub check_5UTR_splice {
my $transcript_variation = shift;
my $variation_feature = shift;
my $strand = $variation_feature->{strand};
my $strand = $transcript_variation->transcript->strand;

# Start is always less than or equal to end regardless of the orientation of the slice (true for introns as well).
my $slice = $variation_feature->feature_Slice();
Expand All @@ -21,7 +21,7 @@ sub check_5UTR_splice {
sub check_3UTR_splice {
my $transcript_variation = shift;
my $variation_feature = shift;
my $strand = $variation_feature->{strand};
my $strand = $transcript_variation->transcript->strand;

# Start is always less than or equal to end regardless of the orientation of the slice (true for introns as well).
my $slice = $variation_feature->feature_Slice();
Expand All @@ -36,4 +36,4 @@ sub check_3UTR_splice {
}
}

1;
1;

0 comments on commit 6a99f18

Please sign in to comment.