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

« back to all changes in this revision

Viewing changes to t/Tools/GFF.t

  • 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:
53
53
is($feat2->end, $feat->end);
54
54
is($feat2->primary_tag, $feat->primary_tag);
55
55
is($feat2->score, $feat->score);
56
 
is(($feat2->each_tag_value('sillytag'))[0], 'this is silly!;breakfast');
 
56
is(($feat2->get_tag_values('sillytag'))[0], 'this is silly!;breakfast');
57
57
 
58
58
#test sequence-region parsing
59
59
$gff2in = Bio::Tools::GFF->new(-gff_version => 2, -file => test_input_file('hg16_chroms.gff'));