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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
# -*-Perl-*-
## Bioperl Test Harness Script for Modules
## $Id: OntologyEngine.t,v 1.6 2003/03/26 09:08:56 lapp Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.t'
use strict;
BEGIN {
# to handle systems with no installed Test module
# we include the t dir (where a copy of Test.pm is located)
# as a fallback
eval { require Test; };
if( $@ ) {
use lib 't';
}
use Test;
plan tests => 22;
}
use Bio::Ontology::Term;
use Bio::Ontology::Relationship;
use Bio::Ontology::RelationshipType;
use Bio::Ontology::SimpleOntologyEngine;
use Bio::Ontology::Ontology;
my $ont = Bio::Ontology::Ontology->new(-name => "My Ontology");
my $eng = Bio::Ontology::SimpleOntologyEngine->new();
$ont->engine($eng);
ok( $eng->isa( "Bio::Ontology::OntologyEngineI" ) );
ok ($ont->engine, $eng);
my @terms = (
[-identifier => "IPR000001",
-name => "Kringle",
-definition => "Kringles are autonomous structural domains ...",
-ontology => $ont
],
[-identifier => "IPR000002",
-name => "Cdc20/Fizzy",
-definition => "The Cdc20/Fizzy region is almost always ...",
-ontology => $ont
],
[-identifier => "IPR000003",
-name => "Retinoid X receptor",
-definition => "Steroid or nuclear hormone receptors ...",
-ontology => $ont
],
[-identifier => "IPR000004",
-name => "Test4",
-definition => "Test4 definition ...",
-ontology => $ont
],
);
for(my $i = 0; $i < @terms; $i++) {
$terms[$i] = Bio::Ontology::Term->new(@{$terms[$i]});
$ont->add_term($terms[$i]);
}
my $rel_type = Bio::Ontology::RelationshipType->get_instance("IS_A", $ont);
my $rel_type1 = Bio::Ontology::RelationshipType->get_instance("PART_OF", $ont);
my @rels = (
[-object_term => $terms[0],
-subject_term => $terms[1],
-predicate_term => $rel_type,
-ontology => $ont,
],
[-object_term => $terms[1],
-subject_term => $terms[2],
-predicate_term => $rel_type,
-ontology => $ont,
],
[-object_term => $terms[0],
-subject_term => $terms[3],
-predicate_term => $rel_type,
-ontology => $ont,
],
[-object_term => $terms[3],
-subject_term => $terms[2],
-predicate_term => $rel_type,
-ontology => $ont,
],
);
for(my $i = 0; $i < @rels; $i++) {
$rels[$i] = Bio::Ontology::Relationship->new(@{$rels[$i]});
$ont->add_relationship($rels[$i]);
}
my @child_terms = sort { $a->identifier() cmp $b->identifier();
} $ont->get_child_terms($terms[0]);
ok (scalar(@child_terms), 2);
ok( $child_terms[0], $terms[1] );
my @child_terms1 = sort { $a->identifier() cmp $b->identifier();
} $ont->get_child_terms($terms[0], $rel_type);
ok (scalar(@child_terms), 2);
ok( $child_terms1[0], $terms[1] );
ok (scalar($ont->get_child_terms($terms[0], $rel_type1)), 0);
my @descendant_terms = sort { $a->identifier() cmp $b->identifier();
} $ont->get_descendant_terms($terms[0]);
ok( scalar(@descendant_terms), 3);
ok( $descendant_terms[1], $terms[2] );
my @descendant_terms1 = sort { $a->identifier() cmp $b->identifier();
} $ont->get_descendant_terms($terms[0], $rel_type);
ok( $descendant_terms1[1], $terms[2] );
ok (scalar(@descendant_terms1), 3);
ok (scalar($ont->get_descendant_terms($terms[0], $rel_type1)), 0);
my @parent_terms = sort { $a->identifier() cmp $b->identifier();
} $ont->get_parent_terms($terms[1]);
ok (scalar(@parent_terms), 1);
ok( $parent_terms[0], $terms[0] );
my @ancestor_terms = sort { $a->identifier() cmp $b->identifier();
} $ont->get_ancestor_terms($terms[2]);
ok( $ancestor_terms[0], $terms[0] );
ok (scalar(@ancestor_terms), 3);
ok (scalar($ont->get_ancestor_terms($terms[2], $rel_type)), 3);
ok (scalar($ont->get_ancestor_terms($terms[2], $rel_type1)), 0);
my @leaf_terms = $ont->get_leaf_terms();
# print scalar(@leaf_terms)."\n";
ok (scalar(@leaf_terms), 1);
ok( $leaf_terms[0], $terms[2]);
my @root_terms = $ont->get_root_terms();
# print scalar(@root_terms)."\n";
ok (scalar(@root_terms), 1);
ok( $root_terms[0], $terms[0]);
#print $ont->engine->to_string();
|