diff --git a/misc-scripts/ontology/scripts/compute_closure.pl b/misc-scripts/ontology/scripts/compute_closure.pl index 325fb4af2ced8a5dff32ec8865e4f2f9fba83c4d..9993e3935086cb84ca175f8b5247d48962c4136b 100755 --- a/misc-scripts/ontology/scripts/compute_closure.pl +++ b/misc-scripts/ontology/scripts/compute_closure.pl @@ -80,8 +80,9 @@ SELECT child_term_id, parent_term_id, 1, child_term_id FROM relation r, relation_type rt WHERE rt.name IN ( - 'is_a', 'part_of', -- in GO and SO - 'has_part', 'derives_from', 'member_of' -- in SO only + 'is_a', 'part_of' -- in both GO and SO + -- THE FOLLOWING ARE REMOVED FOR NOW + -- 'has_part', 'derives_from', 'member_of' -- in SO only ) AND r.relation_type_id = rt.relation_type_id ) );