1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# -*-Perl-*- Test Harness script for Bioperl
# $Id: RepeatMasker.t 15112 2008-12-08 18:12:38Z sendu $
use strict;
BEGIN {
use lib '.';
use Bio::Root::Test;
test_begin(-tests => 14);
use_ok('Bio::Tools::RepeatMasker');
}
my $inputfilename = test_input_file('repeatmasker.fa.out');
my $parser = Bio::Tools::RepeatMasker->new(-file => $inputfilename);
while (my $rpt = $parser->next_result) {
is ($rpt->feature1->seq_id, "contig11600");
is ($rpt->feature1->start, 1337);
is ($rpt->feature1->end, 1407);
is ($rpt->feature1->strand, 1);
is ($rpt->feature1->primary_tag, "Simple_repeat");
is ($rpt->feature1->source_tag, "RepeatMasker");
is (scalar $rpt->feature1->get_tag_values('Target'), 3);
is ($rpt->feature2->seq_id, "(TTAGGG)n");
is ($rpt->feature2->start, 2);
is ($rpt->feature2->end, 76);
is ($rpt->feature1->primary_tag, "Simple_repeat");
is ($rpt->feature1->source_tag, "RepeatMasker");
is (scalar $rpt->feature2->get_tag_values('Target'), 3);
last;
}
|