Skip to content

Commit

Permalink
Revert "fix off-by-one error in bioperl flattener. fixes #73."
Browse files Browse the repository at this point in the history
This reverts commit bb8ba75.
  • Loading branch information
rbuels committed Feb 29, 2012
1 parent bfc6ced commit c0f5247
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/BioperlFlattener.pm
Expand Up @@ -32,9 +32,9 @@ use NameHandler;
#for every feature, which would take up too much space/bandwidth)
#@featMap maps from feature objects to arrays
my @featMap = (
sub {int $_[0]->start },
sub {int $_[0]->end },
sub {int $_[0]->strand},
sub {$_[0]->start - 1},
sub {int($_[0]->end)},
sub {int($_[0]->strand)},
sub {$_[0]->source_tag},
);

Expand Down

0 comments on commit c0f5247

Please sign in to comment.