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

« back to all changes in this revision

Viewing changes to Bio/SeqIO/game/gameWriter.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:
177
177
    # $self->_rearrange_hierarchies($seq, @gene_containers);
178
178
 
179
179
    # add back nested feats
180
 
    $seq->add_SeqFeature( @nested_feats  );
 
180
    $seq->add_SeqFeature( $_ ) foreach @nested_feats;
181
181
    
182
182
    my $atts  = {};
183
183
    my $xml = '';
295
295
    }    
296
296
   
297
297
    push @addback, (@containers, grep { defined $_ } @genes );
298
 
    $seq->add_SeqFeature(@addback);
 
298
    $seq->add_SeqFeature($_) foreach @addback;
299
299
}
300
300
 
301
301