Skip to content
Snippets Groups Projects
Commit b692e771 authored by Graham McVicker's avatar Graham McVicker
Browse files

fixed incorrect arg to SUPER::new

parent 50d64675
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ sub new {
$class = ref $class || $class;
my $self = $class->SUPER::new( $class );
my $self = $class->SUPER::new();
if($e1->strand == -1){
$self->{'end'} = ($e1->start)-1;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment