~ubuntu-branches/ubuntu/trusty/bioperl/trusty

« back to all changes in this revision

Viewing changes to Bio/Tools/Phylo/Gerp.pm

  • Committer: Package Import Robot
  • Author(s): Charles Plessy
  • Date: 2013-09-22 13:39:48 UTC
  • mfrom: (3.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20130922133948-c6z62zegjyp7ztou
Tags: 1.6.922-1
* New upstream release.
* Replaces and Breaks grinder (<< 0.5.3-3~) because of overlaping contents.
  Closes: #722910
* Stop Replacing and Breaking bioperl ( << 1.6.9 ): not needed anymore. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
package Bio::Tools::Phylo::Gerp;
89
89
use strict;
90
90
 
91
 
use Bio::SeqFeature::Annotated;
 
91
use Bio::SeqFeature::Generic;
92
92
use Bio::Annotation::SimpleValue;
93
93
 
94
94
use base qw(Bio::Root::Root Bio::Root::IO);
143
143
    # code elsewhere adds seq_id on the end (not valid GERP), so we capture that
144
144
    # if present
145
145
    my ($start, $end, undef, $rs_score, $p_value, $seq_id) = split(/\s+/, $line);
146
 
    my $feat = Bio::SeqFeature::Annotated->new(
 
146
    my $feat = Bio::SeqFeature::Generic->new(
147
147
        $seq_id ? (-seq_id => $seq_id) : (),
148
148
        -start        => $start, 
149
149
        -end          => $end,