File: create-so-layer.pl

package info (click to toggle)
libchado-perl 1.31-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,724 kB
  • sloc: sql: 282,721; xml: 192,553; perl: 25,524; sh: 102; python: 73; makefile: 57
file content (859 lines) | stat: -rwxr-xr-x 26,672 bytes parent folder | download | duplicates (5)
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
#!/usr/bin/env perl 

use strict;
use warnings;

use Carp;
use DBI;
use Getopt::Long;
use Time::HiRes qw( time );

# POD DOCS AT END

use constant MAX_RELATION_NAME_LEN => 31;

my $debug;
my $help;
my $db;
my $file;
my $user;
my $pass;
my $id_based;
my $PROPTYPE_ID = 'type_id';
my $drop;
my $counts;
my $RTYPE = 'VIEW';
my $verbose;
GetOptions(
           "help|h"=>\$help,
	   "db|d=s"=>\$db,
	   "file|f=s"=>\$file,
	   "user|u=s"=>\$user,
	   "pass|p=s"=>\$pass,
	   "id_based|i"=>\$id_based,
           "count|c"=>\$counts,
	   "drop"=>\$drop,
	   "ptype_id=s"=>\$PROPTYPE_ID,
	   "rtype|r=s"=>\$RTYPE,
           "verbose|v"=>\$verbose,
          );
if ($help) {
    system("perldoc $0");
    exit 0;
}

if ($RTYPE ne 'VIEW' && $RTYPE ne 'TABLE') {
    die "RTYPE: $RTYPE is not VIEW or TABLE";
}

my $dbh;
my $DBI = 'DBIx::DBStag';
eval {
    require "DBIx/DBStag.pm";
    msg("Connecting via DBStag");
    my $sdbh = 
      DBIx::DBStag->connect($db, $user, $pass);
    $dbh = $sdbh->dbh;
};
if ($@) {
    # stag not installed - use DBI
    msg("Connecting via DBI");
    $dbh =
      DBI->connect($db, $user, $pass);
}
msg("Connected");
$dbh->{RaiseError} = 1;

# ==============================================================
# GET FEATURE TYPES
# ==============================================================
# this is only the feature types for which a feature exists within
# the particular chado implementation
msg("getting ftypes");
my $ftypes =
  $dbh->selectall_arrayref(q[SELECT DISTINCT cvterm.cvterm_id, cvterm.name
			     FROM feature INNER JOIN cvterm ON (cvterm_id=type_id)
			    ]);
# ==============================================================
# GET FEATURE PROPERTY TAG NAMES
# ==============================================================
# featureprops are tag=value pairs; the tags are cvterms
msg("getting prop types");
my $ptypes =
  $dbh->selectall_arrayref("SELECT DISTINCT cvterm.cvterm_id, cvterm.name
			     FROM featureprop INNER JOIN cvterm ON (cvterm_id=$PROPTYPE_ID)");

# ==============================================================
# GET FEATURE TYPE TO PROPERTY MAPPING
# ==============================================================
# some feature types only have some kind of property;
# for example, the cvterm 'Ka/Ks' may only apply to exon features
#  this produces a mapping of feature type => property type
#  based on internal database surrogate ids
msg("getting type to prop mappings");
my $ft2ps =
  $dbh->selectall_arrayref("SELECT DISTINCT  feature.type_id, featureprop.type_id
			     FROM featureprop INNER JOIN feature USING (feature_id)");


# ==============================================================
# GET FEATURE RELATIONSHIPS
# ==============================================================
# by type - for example, (mRNA, gene) (exon, mRNA)
msg("getting feature rels");
my $featurerels =
  $dbh->selectall_arrayref(q[SELECT DISTINCT subjf.type_id, objf.type_id
			     FROM feature_relationship INNER JOIN feature AS subjf ON (subjf.feature_id =subject_id)
			     INNER JOIN feature AS objf ON (objf.feature_id = object_id)
			    ]);

# ==============================================================
# GET FEATURE TRIPLE RELATIONSHIPS
# ==============================================================
# for example (exon,mRNA,gene)
msg("getting feature triple-rels");
my $featurereltriples =
  $dbh->selectall_arrayref(q[SELECT DISTINCT f1.type_id, f2.type_id, f3.type_id
			     FROM feature_relationship AS fr1 
                             INNER JOIN feature AS f1 ON (f1.feature_id = fr1.subject_id)
			     INNER JOIN feature AS f2 ON (f2.feature_id = fr1.object_id)
			     INNER JOIN feature_relationship AS fr2 ON (f2.feature_id = fr2.subject_id)
			     INNER JOIN feature AS f3 ON (f3.feature_id = fr2.object_id)
			    ]);

# ftypes and ptypes are two columns; id and name
# create a lookup table
my %typemap = map {$_->[0] => $_->[1]} (@$ftypes, @$ptypes);

my %namemap = ();
my %abbrev = ();

# get all the feature type names and property names
my @names = map {$_->[1]} (@$ftypes, @$ptypes);

# make them database-safe (remove certain characters)
my @safenames = map {safename($_)} @names;

my @so_relations = ();

msg("generating SO layer....");
print "CREATE SCHEMA so;\n";
print "SET search_path=so,public,pg_catalog;\n\n";

foreach my $type (@$ftypes) {
    my $tname = $type->[1];
    my $vname = $namemap{lc($tname)} || die("nothing for @$type");

    my (@cols, @selcols, $sel);

    my @fcols =
      qw(
	 feature_id
	 dbxref_id
	 organism_id
	 name
	 uniquename
	 residues
	 seqlen
	 md5checksum
	 type_id
	 is_analysis
	 timeaccessioned
	 timelastmodified
	);

    my @ifcols =
      qw(
	 feature_id
	 dbxref_id
	 organism_id
	 name
	 uniquename
	);
    
      

    my $vfmt =
      join("\n",
	   "CREATE $RTYPE $vname AS",
	   "  SELECT",
	   "    feature_id AS $vname"."_id,",
#	   "    CAST($vname' AS VARCHAR(64)) AS typestr,",
           "    feature.*",
	   "  FROM",
	   "    feature %s",
	   "  WHERE %s",
	  );
    my $from = "INNER JOIN cvterm ON (feature.type_id = cvterm.cvterm_id)";
    my $where = "cvterm.name = '$tname'";
    my $cmnt = "";
    if ($id_based) {
	$from = "";
	$where = "feature.type_id = $type->[0]";
	$cmnt = "--- This view is derived from the cvterm database ID.\n".
	  "--- This will be more efficient, but the views MUST be regenerated\n".
	    "--- when the Sequence Ontology in the database changes\n";
    }
    
    my $vsql =
      sprintf($vfmt,
	      $from,
	      $where);

    if ($drop) {
	print"DROP $RTYPE $vname  CASCADE;\n";
    }

    printf("--- ************************************************\n".
	   "--- *** relation: %-31s***\n".
	   "--- *** relation type: $RTYPE                      ***\n".
	   "--- ***                                          ***\n".
	   "--- *** Sequence Ontology 'Typed Feature' View   ***\n".
	   "--- ***                                          ***\n".
	   "--- ************************************************\n".
	   "---\n".
	   "--- SO Term:\n".
	   "--- \"$tname\"\n".
	   $cmnt.
	   "\n".
	   "$vsql;\n\n",
	  $vname);
    push(@so_relations, $vname);

    if ($RTYPE eq 'TABLE') {
	print "\n\n--- *** Auto-generated indexes ***\n";
	foreach my $col (@ifcols, $vname.'_id') {
	    print "CREATE INDEX $vname"."_idx_$col ON $vname ($col);\n";
	}
    }

    # PAIRS

    foreach my $is_consecutive (0, 1) {
        my $prefix = $is_consecutive ? 'c':'';
        my $pvname = $prefix.'sib_'.$vname;
        my $where = $is_consecutive ? "  WHERE fr2.rank - fr1.rank = 1\n" : "";

        if ($drop) {
            print"DROP $RTYPE $pvname  CASCADE;\n";
        }

        @cols = ();
        @selcols =
          map {
              my $n = $_;
              map {
                  my $alias = "$_$n";
                  #		   if (/(.*)_id/) {
                  #		       $alias = "$1$n"."_id";
                  #		   }
                  push(@cols, $alias);
                  "    $vname$n.$_ AS $alias" 
              } @fcols
          } qw(1 2);
    
        $sel =
          join(",\n", @selcols);

        my $vname1 = $vname . '1';
        my $vname2 = $vname . '2';
        printf("--- ************************************************\n".
               "--- *** relation: %-31s***\n".
               "--- *** relation type: $RTYPE                      ***\n".
               "--- ***                                          ***\n".
               "--- *** Sequence Ontology Feature Sibling View   ***\n".
               "--- *** features linked by common container      ***\n".
               "--- ************************************************\n".
               "---\n".
               "--- SO Term:\n".
               "--- \"$tname\"\n".
               "CREATE $RTYPE $pvname AS\n".
               "  SELECT\n".
               "    fr1.object_id,\n".
               "    fr1.rank AS rank1,\n".
               "    fr2.rank AS rank2,\n".
               "    fr2.rank - fr1.rank AS rankdiff,\n".
               "$sel\n".
               "  FROM\n".
               "    $vname AS $vname1 INNER JOIN\n". 
               "    feature_relationship AS fr1 ON ($vname1.$vname"."_id = fr1.subject_id)\n".
               "    INNER JOIN\n".
               "    feature_relationship AS fr2 ON (fr2.object_id = fr1.object_id)\n".
               "    INNER JOIN\n".
               "    $vname AS $vname2 ON ($vname1.$vname"."_id = fr2.subject_id)\n".
               $where.
               ";\n\n",
               $pvname);

        push(@so_relations, $pvname);

        if ($RTYPE eq 'TABLE') {
            print "\n\n--- *** Auto-generated indexes ***\n";
            foreach my $col (@cols, 'rankdiff') {
                print "CREATE INDEX $pvname"."_idx_$col ON $pvname ($col);\n";
            }
        }


        # INVERSE PAIRS

        $pvname = $prefix . $vname . '_invsib';
        if ($drop) {
            print"DROP $RTYPE $pvname  CASCADE;\n";
        }
        @cols = ();
        @selcols =
          map {
              my $n = $_;
              map {
                  my $alias = "$_$n";
                  #		   if (/(.*)_id/) {
                  #		       $alias = "$1$n"."_id";
                  #		   }
                  push(@cols, $alias);
                  "    $vname$n.$_ AS $alias" 
              } @fcols
          } qw(1 2);
    
        $sel =
          join(",\n", @selcols);
        $vname1 = $vname . '1';
        $vname2 = $vname . '2';
        printf("--- ************************************************\n".
               "--- *** relation: %-31s***\n".
               "--- *** relation type: $RTYPE                      ***\n".
               "--- ***                                          ***\n".
               "--- *** Sequence Ontology Feature Inverse Pair   ***\n".
               "--- *** features linked by common contained      ***\n".
               "--- *** child feature                            ***\n".
               "--- ************************************************\n".
               "---\n".
               "--- SO Term:\n".
               "--- \"$tname\"\n".
               "CREATE $RTYPE $pvname AS\n".
               "  SELECT\n".
               "    fr1.subject_id,\n".
               "    fr1.rank AS rank1,\n".
               "    fr2.rank AS rank2,\n".
               "    fr2.rank - fr1.rank AS rankdiff,\n".
               "$sel\n".
               "  FROM\n".
               "    $vname AS $vname1 INNER JOIN\n". 
               "    feature_relationship AS fr1 ON ($vname1.$vname"."_id = fr1.object_id)\n".
               "    INNER JOIN\n".
               "    feature_relationship AS fr2 ON (fr2.subject_id = fr1.subject_id)\n".
               "    INNER JOIN\n".
               "    $vname AS $vname2 ON ($vname1.$vname"."_id = fr2.object_id);\n".
               "\n\n",
               $pvname);
        push(@so_relations, $pvname);

        if ($RTYPE eq 'TABLE') {
            print "\n\n--- *** Auto-generated indexes ***\n";
            foreach my $col (@cols) {
                print "CREATE INDEX $pvname"."_idx_$col ON $pvname ($col);\n";
            }
        }
    }
}
msg("generating feature rels");

# FEATURE RELATIONSHIPS
foreach my $fr (@$featurerels) {
    my ($stid, $otid) = @$fr;
    msg("SubObj type_ids: $stid $otid");
    my $st1 = $typemap{$stid} || die "no type for $stid";
    my $ot1 = $typemap{$otid} || die "no type for $otid";
    my $st = $namemap{lc($st1)} || die "no namemap for $st1";
    my $ot = $namemap{lc($ot1)} || die "no namemap for $ot1";
    my $vname = $ot."2".$st;

    my @cols = 
      (
       'feature_relationship_id',
       $st.'_id',
       $ot.'_id',
       'subject_id',
       'object_id'
      );

		  
    my $vsql =
      join("\n",
	   "CREATE $RTYPE $vname AS",
	   "  SELECT",
	   "    feature_relationship_id,",
	   "    subject_id AS $st"."_id,",
	   "    object_id AS $ot"."_id,",
	   "    subject_id,",
	   "    object_id,",
	   "    feature_relationship.type_id",
	   "  FROM",
	   "    $st INNER JOIN feature_relationship ON ($st.feature_id = subject_id)",
	   "        INNER JOIN $ot ON ($ot.feature_id = object_id)",
	  );

    if ($drop) {
	print"DROP $RTYPE $vname CASCADE;\n";
    }
    printf("--- ************************************************\n".
	   "--- *** relation: %-31s***\n".
	   "--- *** relation type: $RTYPE                      ***\n".
	   "--- ***                                          ***\n".
	   "--- *** Sequence Ontology PART-OF view           ***\n".
	   "--- ************************************************\n".
	   "---\n".
	   "--- Subject Type: $st\n".
	   "--- Object Type:  $ot\n".
	   "--- Predicate:    PART-OF\n".
	   "\n".
	   "$vsql;\n\n",
	  $vname);
    push(@so_relations, $vname);

    if ($RTYPE eq 'TABLE') {
	print "\n\n--- *** Auto-generated indexes ***\n";
	foreach my $col (@cols) {
	    print "CREATE INDEX $vname"."_idx_$col ON $vname ($col);\n";
	}
    }


}

# FEATURE RELATIONSHIP TRIPLES
foreach my $fr (@$featurereltriples) {
    my ($tid1, $tid2, $tid3) = @$fr;
    my $t1x = $typemap{$tid1} || die "no type for $tid1";
    my $t2x = $typemap{$tid2} || die "no type for $tid2";
    my $t3x = $typemap{$tid3} || die "no type for $tid3";
    my $t1 = $namemap{lc($t1x)} || die "no namemap for $t1x";
    my $t2 = $namemap{lc($t2x)} || die "no namemap for $t2x";
    my $t3 = $namemap{lc($t3x)} || die "no namemap for $t3x";
    my $vname = $t3."2".$t2."2".$t1;

    my @cols = 
      (
       $t1.'_id',
       $t2.'_id',
       $t3.'_id',
      );

		  
    my $vsql =
      join("\n",
	   "CREATE $RTYPE $vname AS",
	   "  SELECT",
	   "    $t1.feature_id AS $t1"."_id,",
	   "    $t2.feature_id AS $t2"."_id,",
	   "    $t3.feature_id AS $t3"."_id,",
	   "    fr1.type_id AS fr1_type_id,",
	   "    fr2.type_id AS fr2_type_id",
	   "  FROM",
	   "    $t1 INNER JOIN feature_relationship AS fr1 ON ($t1.feature_id = fr1.subject_id)",
	   "        INNER JOIN $t2 ON ($t2.feature_id = fr1.object_id)",
	   "        INNER JOIN feature_relationship AS fr2 ON ($t2.feature_id = fr2.subject_id)",
	   "        INNER JOIN $t3 ON ($t3.feature_id = fr2.object_id)",
	  );

    if ($drop) {
	print"DROP $RTYPE $vname CASCADE;\n";
    }
    printf("--- ************************************************\n".
	   "--- *** relation: %-31s***\n".
	   "--- *** relation type: $RTYPE                      ***\n".
	   "--- ***                                          ***\n".
	   "--- *** Sequence Ontology TRIPLE-REL view        ***\n".
	   "--- ************************************************\n".
	   "---\n".
	   "\n".
	   "$vsql;\n\n",
	  $vname);
    push(@so_relations, $vname);

    if ($RTYPE eq 'TABLE') {
	print "\n\n--- *** Auto-generated indexes ***\n";
	foreach my $col (@cols) {
	    print "CREATE INDEX $vname"."_idx_$col ON $vname ($col);\n";
	}
    }


}

$dbh->disconnect;
print "\n\nSET search_path = public,pg_catalog;\n";
print STDERR "Done!\n";
exit 0;

sub msg {
    return unless $verbose;
    print STDERR "@_\n";
}

# ==============================================================
# safename(string): returns string
# ==============================================================
# makes a name db-safe; also adds the mapping
# from the original name to safe name in the global lookup %namemap
sub safename {
    my $orig = shift;
    my $n = lc($orig);
    my @parts = ();
    @parts = split(/_/, $n);
    @parts = map {$abbrev{$_} || $_} @parts;
    if (length("@parts") > MAX_RELATION_NAME_LEN) {
	@parts = split(/_/, $n);
	my $part_i = 0;
	while (length("@parts") > MAX_RELATION_NAME_LEN) {
	    if ($part_i > @parts) {
		die "cannot shorten $orig [got $n]";
	    }
	    my $part = $parts[$part_i];
	    my $ab = substr($part, 0, 1);
	    $abbrev{$part} = $ab;
	    $parts[$part_i] = $ab;
#	    print "  FROM: $part => $ab\n";
	    $part_i++;
	}
    }
    $n = '';
    while (my $part = shift @parts) {
	$n .= $part;
	if (@parts && (length($part) > 1 || length($parts[0]) > 1)) {
	    $n.= '_';
	}
    }
#    print "NAMEMAP: $orig -> $n\n";
    $namemap{lc($orig)} = $n;
}

__END__

=head1 NAME

create-so-layer.pl

=head1 SYNPOSIS

  create-so-layer.pl -d 'dbi:Pg:dbname=chado;hostname=mypghost.foo.org'

=head1 ARGUMENTS

=over

=item -d DBI-LOCATOR

Database to use as source (does not actually write to database)

=item -i

use internal surrogate database IDs (layer will be NON-PORTABLE)

=item -r|rtype RELATION-TYPE

RELATION-TYPE must be either TABLE or VIEW; the default is VIEW

This determines whether the layer consists of materialized views (ie
TABLEs), or views

=item -d|drop

If this is specified, then DROP VIEW/TABLE statements will be created

this is useful if you wish to REPLACE an existing SO layer

=back

=head1 DESCRIPTION

Chado is a modular database for bioinformatics. The chado
sequence module is generic and has no built-in type system for
sequence feature data. Instead it relies on an external ontology to
provide semantics for feature types.

The canonical ontology for sequence features in the Sequence Ontology
(ref). Chado has a module specifically for housing ontologies. The
combination of SO plus Chado gives a rigorous yet flexible hybrid
relational-ontology model for storing and querying genomic and
proteomic data.

One negative impact of this hybrid model is that apparently simple
queries are hard to express, and may be inefficient. For example, an
SQL select to get the gene count in the database requires joining two
relations (ie tables), instead of one relation (as expected in a
database in which types are encoded relationally, such as ensembl). To
fetch mRNAs with exons attached requires a 5 relation join. Even more
joins must be introduced if we wish to perform the transitive closure
over types (for example, a query for transcripts should return
features directly typed to transcript, as well as to subtypes, such as
mRNA, tRNA, etc).

One solution is to deal with typing issues in the middleware; however,
a solution which allows a user to make ad-hoc queries regarding typed
features in the databae is still required.

We propose a solution to this problem - a chado Sequence Ontology
extension layer. This layer provides relations for all commonly used
sequence ontology types (for example, gene, exon,
transposable_element, intron, ...). These relations can be queried as
if they are any other relation in the database; for example:

  SELECT count(*) FROM gene;

  SELECT * FROM mrna WHERE name like 'CR400%';

Other relations are also provided which represent instantiation
Sequence Ontology part_of and develops_from relationships. For
example, SO contains the relationship "transcript part_of gene", so we
would expect to find instantiations of this relationship in a chado
database. We create "virtual linking relations" for all these, for
example:

  gene2transcript  -- gene to *any* transcript feature
  gene2mrna        -- gene to mRNA feature specifically
  mrna2exon
  trna2exon
  mrna2protein   [polypeptide??]
  gene2mrna2exon

This allows a more natural way of expressing queries, for example over
gene models; compare:

  SELECT * 
  FROM 
    gene2mrna NATURAL JOIN mrna2exon NATURAL JOIN mrna2protein 
  NATURALJOIN
    gene NATURAL JOIN mrna NATURAL JOIN exon NATURAL JOIN protein

with:

  [equivalent direct chado SQL query without SO layer]

In addition, we provide relations for other more complex and
transitive relationship types in SO

Transitive relationship types: [TODO]

All relationship types in SO are transitive; for example, transcript
is proper part of gene, exon is proper part of transcripts; therefore
exon is transitively part of gene. Again, virtual linking tables can
be generated from a chado instance; so far we generate

  gene2exon
  gene2protein

Currently these are the only transitive non-isa chains in SO (TODO -
karen check..)

We also provide transitive linking tables that explicitly include the
full path:

  gene2transcript2exon
  gene2mrna2exon
  gene2trna2exon
  gene2ncrna2exon

Other relationship chains:

[THE FOLLOWING TWO FORMS ARE JUST SQLization OF KAREN'S IDEAS ON
MEREONOMY WITH SO; check with karen re the names "sibling pairs"
"parent pairs"]

Sibling pairs

Sibling pairs are features of any type related by a common parent; for
example, exons that share the same transcript container. We create
virtual linking tables for these; for example

  exon_pair
  transcript_pair
  protein_pair

Consecutive Sibling pairs [TODO]

These are sibling pairs when the siblings are explicitly consecutive;
this is provided by the feature_relationship.rank table in chado

Parent pairs:

An parent pair is two features with a child/contained feature in
common. For example, two mRNAs that produce the same protein; two
transcripts that contain the same exon (note that this is almost
always when the transcripts are siblings-by-parent-genes; but a parent
pair allows the user to see by which exons the transcripts are
related)

  transcript_invpair
  protein_invpair

PROPERTIES [TODO]

features can have any number of property name=value pairs attached to
them in chado. The name of the property comes from a controlled
vocabulary of sequence feature properties. Eventually the canonical
list of properties will be regulated by SO, for now they live in chado
as an external ontology.

Again, because the featureprop table has a foreign key to the primary
surrogate key in the cvterm table, some queries can be awkward to
express and involve many joins.

To get round this, the SO layer also provides views for common
properties; here we have a cross-product between relations, but not
all relations have all properties; for example, only exons and
predicted exons have the property KaKs

  feature_foo
  gene_foo
  feature_kaks
  exon_kaks

IMPLEMENTATION
==============

LAYER TYPE
----------

The SO layer is generated directly from a chado database
instance. Perl scripts query the database and the SO OBO file.

The implementations are possible:

1. Portable SO View layer

These views are portable and can be applied to any instance of
chado. They work by joining on the name of the SO type; if SO names
change, then this layer will have to be rebuilt.

The underlying view looks like this:

  CREATE VIEW foo AS 
  SELECT feature.*
  FROM feature INNER JOIN cvterm ON (feature.type_id=cvterm.cvterm_id)
  WHERE cvterm.name = 'foo';

[this is for basic features only]

2. Non-portable SO View layer

These views are constructed from the surrogate primary key of the sequence
ontology term in chado (cvterm.cvterm_id). Surrogate primary keys are
not portable between database instantiations; surrogate keys should
never be exposed outside the database. This layer becomes obsolete if
the sequence ontology is ever reloaded (because the surrogate keys are
not guaranteed to be preserved between loads). We provide triggers
that removes a SO view if the underlying ontology term in the database
is updated or deleted [TODO].

This layer is faster and more efficient than the non-portable layer
(because it is not actually necessary to join to the cvterm table)

The underlying view looks like this:

  CREATE VIEW foo AS 
  SELECT feature.*
  FROM feature WHERE feature.type_id = 1234

(where 1234 is the surrogate primary key of type 'foo' in the cvterm relation)

The extra speed of this layer comes at the price of less update flexibility

3. Materialized View (Table) layer

This is the fastest yet most update-restrictive way to construct the
layer.

Each SO type gets a table rather than a view. This is the fastest; for
example, when fetching genes, the database engine knows to only look
in one single (smaller) table rather than filtering out the gene type
from the (possibly enormous) feature table.

The table is constructed like this:

  CREATE TABLE foo AS 
  SELECT feature.*
  FROM feature WHERE feature.type_id = 1234

(plus indexing SQL statements)

This layer is only practical if chado is used in "data-warehouse"
mode; modification of the underlying feature data renders the
materialized views stale. One possibility is automatically rebuilding
the materialized view when the underlying feature table changes;
however, this could lead to extremely slow updates 

IMPLICIT TYPES
--------------

Not all types are instantiated within a chado database; for example,
there are no intron or UTR features as these are derivable from other
features. Nevertheless it can be useful to perform queries on
derivable types as if they were actually present.

[this is all TODO]

These types are derived using type-specific rules. For example, an
intron rules can be stated in SQL as derived from exon sibling pairs
(cv above)

  [[EXAMPLE SQL]]
  [[SKOLEM FUNCTIONS]]

Again, implicit types can be implemented as portable or non-portable
views, or as materialized views (tables).

Implicit types

  intron
  utr3
  utr5
  splice_site
  dicistronic_gene
  protein_coding_gene    [currently implicit in chado via transcript type]
  exon5prime
  exon3prime
  coding_exon
  partially_coding_exon
  intergenic_region           [HARD]

discuss - expressing these rules in SQL vs expressing in some other
delcarative language (first order predicate logic; KIF; Prolog/horn
clauses) then translating automatically to SQL.

==========
DISCUSSION
==========

Selection of which of the 3 implementation strategies to use is purely
a DB admin decision. The person constructing the SQL queries need not
know or care (other than perhaps to be aware for efficiency reasons)
how the layer is implemented - as far as they are concerned they have
relations such as gene, transcript, variation etc that act just like
normal tables when queried (but not updated - discuss updates on
views)

The view layer is not necessarily limited to chado databases - any
relational database implemented with a DBMS that allows views
(currently any DBMS other than mysql) is fair game. For example, one
could take a postgres or oracle instantiation of ensembl and write a
SO layer generator. Note that ensembl already has a
relationally-expressed notion of entities such as gene, exon etc. One
way round that is to keep the SO layer seperate in the db; eg through
postgresql SCHEMAs.

This points the way forward to a unified standard for querying genomic
databases; whilst adoption of standards for genomic relational
databases is a fraught issue at best (different groups and projects
prefer their own schemas for good reasons), we can see the need for
there being a common user-query layer, based on a standard of feature
types (ie SO).

[discussion of difficulties with doing apparently simple (and complex)
queries on existing relational databases]

=cut