TRUE)); } } /** * Implementation of hook_requirements(). * * @ingroup tripal_legacy_analysis */ function tripal_analysis_requirements($phase) { $requirements = array(); if ($phase == 'install') { // make sure chado is installed if (!$GLOBALS["chado_is_installed"]) { $requirements ['tripal_analysis'] = array( 'title' => "tripal_analysis", 'value' => "ERROR: Chado must be installed before this module can be enabled", 'severity' => REQUIREMENT_ERROR, ); } } return $requirements; } /** * Implementation of hook_install(). * * @ingroup tripal_legacy_analysis */ function tripal_analysis_install() { // add vocabularies tripal_analysis_add_cvs(); // add cvterms tripal_analysis_add_cvterms(); // set the default vocabularies tripal_set_default_cv('analysisprop', 'type_id', 'analysis_property'); } /** * Implementation of hook_uninstall(). * * @ingroup tripal_legacy_analysis */ function tripal_analysis_uninstall() { } /** * Add cvs related to analyses * * @ingroup tripal_legacy_analysis */ function tripal_analysis_add_cvs() { // typically here we would add the analysis_property vocabulary // but it already comes with Chado. } /** * Adds controlled vocabulary terms needed by this module. * * @ingroup tripal_legacy_analysis */ function tripal_analysis_add_cvterms() { tripal_insert_cv( 'tripal_analysis', 'Terms used for managing analyses in Tripal' ); // add analysis_date. This is no longer used (as far as we can tell) but we don't // get rid of it in case it is used, so just keep it in the Tripal CV tripal_insert_cvterm( array( 'name' => 'analysis_date', 'definition' => 'The date that an analysis was performed.', 'cv_name' => 'tripal', 'is_relationship' => 0, 'db_name' => 'tripal' ), array('update_existing' => TRUE) ); // add analysis_short_name. This is no longer used (as far as we can tell) but we don't // get rid of it in case it is used, so just keep it in the Tripal CV tripal_insert_cvterm( array( 'name' => 'analysis_short_name', 'definition' => 'A computer legible (no spaces or special characters) ' . 'abbreviation for the analysis.', 'cv_name' => 'tripal', 'is_relationship' => 0, 'db_name' => 'local' ), array('update_existing' => TRUE) ); // the 'analysis_property' vocabulary is for user definable properties wo we // will add an 'Analysis Type' to this vocubulary tripal_insert_cvterm( array( 'name' => 'Analysis Type', 'definition' => 'The type of analysis that was performed.', 'cv_name' => 'analysis_property', 'is_relationship' => 0, 'db_name' => 'local' ), array('update_existing' => TRUE) ); } /** * Implementation of hook_schema(). * * - chado_analysis table * stores nodes that are also saved in the analysis table of chado database. * - tripal_analysis table * stores the sub-module names, such as tripal_analysis_blast, that are registered * with this module. * * @ingroup tripal_legacy_analysis */ function tripal_analysis_schema() { // chado_analysis table $schema['chado_analysis'] = 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 ), 'analysis_id' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0 ) ), 'indexes' => array( 'analysis_id' => array('analysis_id') ), 'unique keys' => array( 'nid_vid' => array('nid', 'vid'), 'vid' => array('vid') ), 'primary key' => array('nid'), ); // tripal_analysis table $schema['tripal_analysis'] = array( 'description' => 'Table to store analysis sub-modules', 'fields' => array( 'modulename' => array( 'type' => 'text', 'size' => 'small', 'not null' => TRUE, 'description' => 'The module name. Tripal Analysis will use the module name to call module_setting_form()' ) ), 'unique keys' => array( 'modulename' => array('modulename') ) ); return $schema; }