123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?php
- function tripal_library_chado_library_schema() {
- $description = array();
-
- $description['foreign keys']['organism'] = array(
- 'table' => 'organism',
- 'columns' => array(
- 'organism_id' => 'organism_id',
- ),
- );
- $description['foreign keys']['cvterm'] = array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- );
- $referring_tables = array(
- 'library_cvterm',
- 'library_feature',
- 'library_pub',
- 'library_synonym',
- 'libraryprop'
- );
- $description['referring_tables'] = $referring_tables;
- return $description;
- }
- function tripal_library_chado_library_feature_schema() {
- $description = array();
-
- $description['foreign keys']['library'] = array(
- 'table' => 'library',
- 'columns' => array(
- 'library_id' => 'library_id',
- ),
- );
- $description['foreign keys']['feature'] = array(
- 'table' => 'feature',
- 'columns' => array(
- 'feature_id' => 'feature_id',
- ),
- );
- return $description;
- }
- function tripal_library_chado_libraryprop_schema() {
- $description = array();
-
- $description['foreign keys']['library'] = array(
- 'table' => 'library',
- 'columns' => array(
- 'library_id' => 'library_id',
- ),
- );
- $description['foreign keys']['cvterm'] = array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- );
- return $description;
- }
- function tripal_library_get_property($library_id, $property) {
- return tripal_core_get_property('library', $library_id, $property, 'tripal');
- }
- function tripal_library_insert_property($library_id, $property, $value, $update_if_present = 0) {
- return tripal_core_insert_property('library', $library_id, $property, 'tripal', $value, $update_if_present);
- }
- function tripal_library_update_property($library_id, $property, $value, $insert_if_missing = 0) {
- return tripal_core_update_property('library', $library_id, $property, 'tripal', $value, $insert_if_missing);
- }
- function tripal_library_delete_property($library_id, $property) {
- return tripal_core_delete_property('library', $library_id, $property, 'tripal');
- }
|