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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
-- $Id: phylogeny.sql,v 1.11 2007-04-12 17:00:30 briano Exp $
-- ==========================================
-- Chado phylogenetics module
--
-- Richard Bruskiewich
-- Chris Mungall
--
-- Initial design: 2004-05-27
--
-- ============
-- DEPENDENCIES
-- ============
-- :import feature from sequence
-- :import cvterm from cv
-- :import pub from pub
-- :import organism from organism
-- :import dbxref from db
-- :import analysis from companalysis
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ================================================
-- TABLE: phylotree
-- ================================================
create table phylotree (
phylotree_id bigserial not null,
primary key (phylotree_id),
dbxref_id bigint not null,
foreign key (dbxref_id) references dbxref (dbxref_id) on delete cascade,
name varchar(255) null,
type_id bigint,
foreign key (type_id) references cvterm (cvterm_id) on delete cascade,
analysis_id bigint null,
foreign key (analysis_id) references analysis (analysis_id) on delete cascade,
comment text null,
unique(phylotree_id)
);
create index phylotree_idx1 on phylotree (phylotree_id);
COMMENT ON TABLE phylotree IS 'Global anchor for phylogenetic tree.';
COMMENT ON COLUMN phylotree.type_id IS 'Type: protein, nucleotide, taxonomy, for example. The type should be any SO type, or "taxonomy".';
-- ================================================
-- TABLE: phylotree_pub
-- ================================================
create table phylotree_pub (
phylotree_pub_id bigserial not null,
primary key (phylotree_pub_id),
phylotree_id bigint not null,
foreign key (phylotree_id) references phylotree (phylotree_id) on delete cascade,
pub_id bigint not null,
foreign key (pub_id) references pub (pub_id) on delete cascade,
unique(phylotree_id, pub_id)
);
create index phylotree_pub_idx1 on phylotree_pub (phylotree_id);
create index phylotree_pub_idx2 on phylotree_pub (pub_id);
COMMENT ON TABLE phylotree_pub IS 'Tracks citations global to the tree e.g. multiple sequence alignment supporting tree construction.';
-- ================================================
-- TABLE: phylotreeprop
-- ================================================
create table phylotreeprop (
phylotreeprop_id bigserial not null,
phylotree_id bigint not null,
type_id bigint not null,
value text null,
rank int not null default 0,
primary key (phylotreeprop_id),
foreign key (phylotree_id) references phylotree (phylotree_id) on delete cascade INITIALLY DEFERRED,
foreign key (type_id) references cvterm (cvterm_id) on delete cascade INITIALLY DEFERRED,
constraint phylotreeprop_c1 unique (phylotree_id,type_id,rank)
);
create index phylotreeprop_idx1 on phylotreeprop (phylotree_id);
create index phylotreeprop_idx2 on phylotreeprop (type_id);
COMMENT ON TABLE phylotreeprop IS 'A phylotree can have any number of slot-value property
tags attached to it. This is an alternative to hardcoding a list of columns in the
relational schema, and is completely extensible.';
COMMENT ON COLUMN phylotreeprop.type_id IS 'The name of the property/slot is a cvterm.
The meaning of the property is defined in that cvterm.';
COMMENT ON COLUMN phylotreeprop.value IS 'The value of the property, represented as text.
Numeric values are converted to their text representation. This is less efficient than
using native database types, but is easier to query.';
COMMENT ON COLUMN phylotreeprop.rank IS 'Property-Value ordering. Any
phylotree can have multiple values for any particular property type
these are ordered in a list using rank, counting from zero. For
properties that are single-valued rather than multi-valued, the
default 0 value should be used';
COMMENT ON INDEX phylotreeprop_c1 IS 'For any one phylotree, multivalued
property-value pairs must be differentiated by rank.';
-- ================================================
-- TABLE: phylonode
-- ================================================
create table phylonode (
phylonode_id bigserial not null,
primary key (phylonode_id),
phylotree_id bigint not null,
foreign key (phylotree_id) references phylotree (phylotree_id) on delete cascade,
parent_phylonode_id bigint null,
foreign key (parent_phylonode_id) references phylonode (phylonode_id) on delete cascade,
left_idx int not null,
right_idx int not null,
type_id bigint,
foreign key(type_id) references cvterm (cvterm_id) on delete cascade,
feature_id bigint,
foreign key (feature_id) references feature (feature_id) on delete cascade,
label varchar(255) null,
distance float null,
-- Bootstrap float null.
unique(phylotree_id, left_idx),
unique(phylotree_id, right_idx)
);
CREATE INDEX phylonode_parent_phylonode_id_idx ON phylonode (parent_phylonode_id);
COMMENT ON TABLE phylonode IS 'This is the most pervasive
element in the phylogeny module, cataloging the "phylonodes" of
tree graphs. Edges are implied by the parent_phylonode_id
reflexive closure. For all nodes in a nested set implementation the left and right index will be *between* the parents left and right indexes.';
COMMENT ON COLUMN phylonode.feature_id IS 'Phylonodes can have optional features attached to them e.g. a protein or nucleotide sequence usually attached to a leaf of the phylotree for non-leaf nodes, the feature may be a feature that is an instance of SO:match; this feature is the alignment of all leaf features beneath it.';
COMMENT ON COLUMN phylonode.type_id IS 'Type: e.g. root, interior, leaf.';
COMMENT ON COLUMN phylonode.parent_phylonode_id IS 'Root phylonode can have null parent_phylonode_id value.';
-- ================================================
-- TABLE: phylonode_dbxref
-- ================================================
create table phylonode_dbxref (
phylonode_dbxref_id bigserial not null,
primary key (phylonode_dbxref_id),
phylonode_id bigint not null,
foreign key (phylonode_id) references phylonode (phylonode_id) on delete cascade,
dbxref_id bigint not null,
foreign key (dbxref_id) references dbxref (dbxref_id) on delete cascade,
unique(phylonode_id,dbxref_id)
);
create index phylonode_dbxref_idx1 on phylonode_dbxref (phylonode_id);
create index phylonode_dbxref_idx2 on phylonode_dbxref (dbxref_id);
COMMENT ON TABLE phylonode_dbxref IS 'For example, for orthology, paralogy group identifiers; could also be used for NCBI taxonomy; for sequences, refer to phylonode_feature, feature associated dbxrefs.';
-- ================================================
-- TABLE: phylonode_pub
-- ================================================
create table phylonode_pub (
phylonode_pub_id bigserial not null,
primary key (phylonode_pub_id),
phylonode_id bigint not null,
foreign key (phylonode_id) references phylonode (phylonode_id) on delete cascade,
pub_id bigint not null,
foreign key (pub_id) references pub (pub_id) on delete cascade,
unique(phylonode_id, pub_id)
);
create index phylonode_pub_idx1 on phylonode_pub (phylonode_id);
create index phylonode_pub_idx2 on phylonode_pub (pub_id);
-- ================================================
-- TABLE: phylonode_organism
-- ================================================
create table phylonode_organism (
phylonode_organism_id bigserial not null,
primary key (phylonode_organism_id),
phylonode_id bigint not null,
foreign key (phylonode_id) references phylonode (phylonode_id) on delete cascade,
organism_id bigint not null,
foreign key (organism_id) references organism (organism_id) on delete cascade,
unique(phylonode_id)
);
create index phylonode_organism_idx1 on phylonode_organism (phylonode_id);
create index phylonode_organism_idx2 on phylonode_organism (organism_id);
COMMENT ON TABLE phylonode_organism IS 'This linking table should only be used for nodes in taxonomy trees; it provides a mapping between the node and an organism. One node can have zero or one organisms, one organism can have zero or more nodes (although typically it should only have one in the standard NCBI taxonomy tree).';
COMMENT ON COLUMN phylonode_organism.phylonode_id IS 'One phylonode cannot refer to >1 organism.';
-- ================================================
-- TABLE: phylonodeprop
-- ================================================
create table phylonodeprop (
phylonodeprop_id bigserial not null,
primary key (phylonodeprop_id),
phylonode_id bigint not null,
foreign key (phylonode_id) references phylonode (phylonode_id) on delete cascade,
type_id bigint not null,
foreign key (type_id) references cvterm (cvterm_id) on delete cascade,
value text not null default '',
-- It is not clear how useful the rank concept is here, leave it in for now.
rank int not null default 0,
unique(phylonode_id, type_id, value, rank)
);
create index phylonodeprop_idx1 on phylonodeprop (phylonode_id);
create index phylonodeprop_idx2 on phylonodeprop (type_id);
COMMENT ON COLUMN phylonodeprop.type_id IS 'type_id could designate phylonode hierarchy relationships, for example: species taxonomy (kingdom, order, family, genus, species), "ortholog/paralog", "fold/superfold", etc.';
-- ================================================
-- TABLE: phylonode_relationship
-- ================================================
create table phylonode_relationship (
phylonode_relationship_id bigserial not null,
primary key (phylonode_relationship_id),
subject_id bigint not null,
foreign key (subject_id) references phylonode (phylonode_id) on delete cascade,
object_id bigint not null,
foreign key (object_id) references phylonode (phylonode_id) on delete cascade,
type_id bigint not null,
foreign key (type_id) references cvterm (cvterm_id) on delete cascade,
rank int,
phylotree_id bigint not null,
foreign key (phylotree_id) references phylotree (phylotree_id) on delete cascade,
unique(subject_id, object_id, type_id)
);
create index phylonode_relationship_idx1 on phylonode_relationship (subject_id);
create index phylonode_relationship_idx2 on phylonode_relationship (object_id);
create index phylonode_relationship_idx3 on phylonode_relationship (type_id);
COMMENT ON TABLE phylonode_relationship IS 'This is for
relationships that are not strictly hierarchical; for example,
horizontal gene transfer. Most phylogenetic trees are strictly
hierarchical, nevertheless it is here for completeness.';
|