123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <?php
- function tripal_library_disable() {
-
- require_once("tripal_library.views_default.inc");
- $views = tripal_library_views_default_views();
- foreach (array_keys($views) as $view_name) {
- tripal_views_admin_disable_view($view_name,FALSE,array('suppress_error' => TRUE));
- }
- }
- function tripal_library_requirements($phase) {
- $requirements = array();
- if ($phase == 'install') {
-
- if (!$GLOBALS["chado_is_installed"]) {
- $requirements ['tripal_library'] = array(
- 'title' => "tripal_library",
- 'value' => "ERROR: Chado must be installed before this module can be enabled",
- 'severity' => REQUIREMENT_ERROR,
- );
- }
- }
- return $requirements;
- }
- function tripal_library_install() {
-
- tripal_create_moddir('tripal_library');
-
- tripal_library_add_mview_library_feature_count();
-
- tripal_library_add_cvs();
- tripal_library_add_cvterms();
- }
- function tripal_library_uninstall() {
- }
- function tripal_library_schema() {
- $schema['chado_library'] = array(
- 'fields' => array(
- 'vid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- 'default' => 0
- ),
- 'nid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- 'default' => 0
- ),
- 'library_id' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0
- )
- ),
- 'indexes' => array(
- 'chado_library_idx1' => array('library_id')
- ),
- 'unique keys' => array(
- 'chado_library_uq1' => array('nid', 'vid'),
- 'chado_library_uq2' => array('vid')
- ),
- 'primary key' => array('nid'),
- );
- return $schema;
- }
- function tripal_library_add_mview_library_feature_count(){
- $view_name = 'library_feature_count';
- $comment = 'Provides count of feature by type that are associated with all libraries';
- $schema = array(
- 'table' => $view_name,
- 'description' => $comment,
- 'fields' => array(
- 'library_id' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- ),
- 'name' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => TRUE,
- ),
- 'num_features' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- ),
- 'feature_type' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => TRUE,
- ),
- ),
- 'indexes' => array(
- 'library_feature_count_idx1' => array('library_id'),
- ),
- );
- $sql = "
- SELECT
- L.library_id, L.name,
- count(F.feature_id) as num_features,
- CVT.name as feature_type
- FROM library L
- INNER JOIN library_feature LF ON LF.library_id = L.library_id
- INNER JOIN feature F ON LF.feature_id = F.feature_id
- INNER JOIN cvterm CVT ON F.type_id = CVT.cvterm_id
- GROUP BY L.library_id, L.name, CVT.name
- ";
- tripal_add_mview($view_name, 'tripal_library', $schema, $sql, $comment);
- }
- function tripal_library_add_cvs(){
- tripal_cv_add_cv('library_property', 'Contains properties for libraries');
- tripal_cv_add_cv('library_type', 'Contains terms for types of libraries (e.g. BAC, cDNA, FOSMID, etc).');
- }
- function tripal_library_add_cvterms() {
-
-
-
- tripal_cv_add_cvterm(
- array(
- 'name' => 'Library Description',
- 'def' => 'Description of a library'
- ),
- 'library_property', 0, 1, 'tripal'
- );
-
- tripal_cv_add_cvterm(
- array(
- 'name' => 'cdna_library',
- 'def' => 'cDNA library'
- ),
- 'library_type', 0, 1, 'tripal'
- );
- tripal_cv_add_cvterm(
- array(
- 'name' => 'bac_library',
- 'def' => 'Bacterial Artifical Chromsome (BAC) library'
- ),
- 'library_type', 0, 1, 'tripal'
- );
- tripal_cv_add_cvterm(
- array(
- 'name' => 'fosmid_library',
- 'def' => 'Fosmid library'
- ),
- 'library_type', 0, 1, 'tripal'
- );
- tripal_cv_add_cvterm(
- array(
- 'name' => 'cosmid_library',
- 'def' => 'Cosmid library'
- ),
- 'library_type', 0, 1, 'tripal'
- );
- tripal_cv_add_cvterm(
- array(
- 'name' => 'yac_library',
- 'def' => 'Yeast Artificial Chromosome (YAC) library'
- ),
- 'library_type', 0, 1, 'tripal'
- );
- tripal_cv_add_cvterm(
- array(
- 'name' => 'genomic_library',
- 'def' => 'Genomic Library'),
- 'library_type', 0, 1, 'tripal'
- );
- }
- function tripal_library_update_7000() {
-
-
-
- $cv = tripal_cv_get_cv_by_name('tripal_library_types');
- $match = array(
- 'cv_id' => $cv->cv_id
- );
- $values = array(
- 'name' => 'library_type'
- );
- $success = tripal_core_chado_update('cv', $match, $values);
- if (!$success) {
- throw new DrupalUpdateException('Failed to rename tripal_library_types CV.');
- }
-
-
-
-
-
-
- tripal_library_add_cvs();
- $cv = tripal_cv_get_cv_by_name('library_property');
- $cvterm = tripal_cv_get_cvterm_by_name('library_description');
- $match = array(
- 'cvterm_id' => $cvterm->cvterm_id,
- );
- $values = array(
- 'cv_id' => $cv->cv_id,
- 'name' => 'Library Description',
- );
- tripal_core_chado_update('cvterm', $match, $values);
- if (!$success) {
- throw new DrupalUpdateException('Failed to move library properties to new library_property CV.');
- }
- }
|