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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
BEGIN { unshift( @INC, './lib' ) }
$ENV{PATH} .= ":./bin";
BEGIN {
use Test::Most;
use_ok('Bio::Roary::ContigsToGeneIDsFromGFF');
}
ok(
my $obj = Bio::Roary::ContigsToGeneIDsFromGFF->new(
gff_file => 't/data/query_1.gff'
),
'Initialise contigs to gene ids obj'
);
is_deeply(
$obj->contig_to_ids,
{
'abc|SC|contig000001' => [
'1_1', 'abc_00002', 'abc_00003', 'abc_00004', '1_2', 'abc_00006', '1_3', 'abc_00008',
'abc_00010', 'abc_00011', 'abc_00012', 'abc_00014', '1_6', 'abc_00016'
]
},
'Contigs match expected with standard output'
);
ok(
$obj = Bio::Roary::ContigsToGeneIDsFromGFF->new(
gff_file => 't/data/query_1_alternative_patterns.gff'
),
'Initialise contigs to gene ids obj with alternative ID patterns'
);
is_deeply(
$obj->contig_to_ids,
{
'abc|SC|contig000001' => [ '1_1', 'abc_00002', 'abc_00003', 'abc_00004', '1_2', 'abc_00006' ]
},
'Contigs match expected with alternative output'
);
is_deeply(
$obj->_genes_annotation,
[
{
'database_annotation_exists' => 1,
'product' => 'superantigen-like protein',
'end' => '3337',
'start' => '2621',
'contig' => 'abc|SC|contig000001',
'id_name' => 'abc_00004'
},
{
'database_annotation_exists' => 1,
'product' => 'hypothetical protein',
'end' => '4170',
'start' => '3445',
'contig' => 'abc|SC|contig000001',
'id_name' => '1_2'
},
{
'database_annotation_exists' => 1,
'product' => 'superantigen-like protein',
'end' => '4990',
'start' => '4265',
'contig' => 'abc|SC|contig000001',
'id_name' => 'abc_00006'
}
],
'Product annotation with non standard format'
);
done_testing();
|