tripal_core.chado_general.api.inc 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <?php
  2. require_once "tripal_core.schema_v1.2.api.inc";
  3. require_once "tripal_core.schema_v1.11.api.inc";
  4. /**
  5. * @file
  6. * Chado API
  7. *
  8. * @defgroup tripal_chado_api Chado API
  9. * @ingroup tripal_core_api
  10. * @{
  11. * Provides an application programming interface (API) to manage data withing the Chado database.
  12. * This includes functions for selecting, inserting, updating and deleting records
  13. * in Chado tables. The functions will ensure proper integrity contraints are met
  14. * for inserts and updates.
  15. *
  16. * Also, a set of functions is provided for creating template variables. First,
  17. * is the tripal_core_generate_chado_vars which is used to select one ore more
  18. * records from a table and return an array with foreign key relationships fully
  19. * populated. For example, if selecting a feature, the organism_id and type_id
  20. * would be present in the returned array as a nested array with their respective
  21. * foreign keys also nested. The only fields that are not included are text
  22. * fields (which may be very large) or many-to-many foreign key relationships.
  23. * However, these fields and relationships can be expanded using the
  24. * tripal_core_expand_chado_vars.
  25. *
  26. * When a row from a chado table is selected using these two functions, it provides
  27. * a way for users who want to cutomize Drupal template files to access all data
  28. * associate with a specific record.
  29. *
  30. * Finally, the property tables in Chado generally follow the same format. Therefore
  31. * there is a set of functions for inserting, updating and deleting properties for
  32. * any table. This provides quick lookup of properties (provided the CV term is
  33. * known).
  34. *
  35. * @}
  36. *
  37. */
  38. // Globals used by Tripals Error catching functions
  39. // Should match those defined by watchdog
  40. define('TRIPAL_CRITICAL',2);
  41. define('TRIPAL_ERROR',3);
  42. define('TRIPAL_WARNING',4);
  43. define('TRIPAL_NOTICE',5);
  44. define('TRIPAL_INFO',6);
  45. define('TRIPAL_DEBUG',7);
  46. /**
  47. * This function is used to set the global Chado variables
  48. * @ingroup tripal_chado_api
  49. */
  50. function tripal_core_set_globals() {
  51. // these global variables are meant to be accessed by all Tripal
  52. // modules to find the chado version installed and if Chado is local.
  53. // these variables are stored as globals rather than using the drupal_set_variable
  54. // functions because the Drupal functions make databaes queries and for long
  55. // running loaders we don't want those queries repeatedly.
  56. $GLOBALS["chado_is_installed"] = tripal_core_is_chado_installed();
  57. if ($GLOBALS["chado_is_installed"]) {
  58. $GLOBALS["chado_is_local"] = tripal_core_is_chado_local();
  59. $GLOBALS["chado_version"] = tripal_core_get_chado_version();
  60. $GLOBALS["exact_chado_version"] = tripal_core_get_chado_version(TRUE);
  61. }
  62. }
  63. /**
  64. * Provide better error notice for Tripal
  65. * @param $type
  66. * The catagory to which this message belongs. Can be any string, but the general
  67. * practice is to use the name of the module.
  68. * @param $message
  69. * The message to store in the log. Keep $message translatable by not concatenating
  70. * dynamic values into it! Variables in the message should be added by using placeholder
  71. * strings alongside the variables argument to declare the value of the placeholders.
  72. * See t() for documentation on how $message and $variables interact.
  73. * @param $variables
  74. * Array of variables to replace in the message on display or NULL if message is
  75. * already translated or not possible to translate.
  76. * @param $severity
  77. * The severity of the message; one of the following values:
  78. * - TRIPAL_CRITICAL: Critical conditions.
  79. * - TRIPAL_ERROR: Error conditions.
  80. * - TRIPAL_WARNING: Warning conditions.
  81. * - TRIPAL_NOTICE: (default) Normal but significant conditions.
  82. * - TRIPAL_INFO: Informational messages.
  83. * - TRIPAL_DEBUG: Debug-level messages.
  84. * @param $options
  85. * An array of options. Some available options include:
  86. * - print: prints the error message to the screen. Useful when display is the command-line
  87. *
  88. * @ingroup tripal_chado_api
  89. */
  90. function tripal_core_report_error($type, $severity, $message, $variables = array(), $options = array()) {
  91. // Get human-readable severity string
  92. $severity_string = '';
  93. switch ($severity) {
  94. case TRIPAL_CRITICAL:
  95. $severity_string = 'CRITICAL';
  96. break;
  97. case TRIPAL_ERROR:
  98. $severity_string = 'ERROR';
  99. break;
  100. case TRIPAL_WARNING:
  101. $severity_string = 'WARNING';
  102. break;
  103. case TRIPAL_NOTICE:
  104. $severity_string = 'NOTICE';
  105. break;
  106. case TRIPAL_INFO:
  107. $severity_string = 'INFO';
  108. break;
  109. case TRIPAL_DEBUG:
  110. $severity_string = 'DEBUG';
  111. break;
  112. }
  113. // Send to watchdog
  114. try {
  115. watchdog($type, $message, $variables, $severity);
  116. }
  117. catch (Exception $e) {
  118. print "CRITICAL (TRIPAL_CORE): Unable to register error message with watchdog";
  119. $options['print'] = TRUE;
  120. }
  121. // If print option supplied then print directly to the screen
  122. if (isset($options['print'])) {
  123. if (sizeof($variables) > 0) {
  124. $message = str_replace(array_keys($variables), $variables, $message);
  125. }
  126. print $severity_string . ' (' . strtoupper($type) . '):' . $message . "\n";
  127. }
  128. }
  129. /**
  130. * Get chado id for a node. E.g, if you want to get 'analysis_id' from the
  131. * 'analysis' table for a synced 'chado_analysis' node, (the same for
  132. * organisms and features):
  133. * $analysis_id = chado_get_id_for_node ('analysis', $node->nid)
  134. * $organism_id = chado_get_id_for_node ('organism', $node->nid)
  135. * $feature_id = chado_get_id_for_node ('feature', $node->nid)
  136. *
  137. * @param $table
  138. * @param $nid
  139. *
  140. * @ingroup tripal_chado_api
  141. */
  142. function chado_get_id_for_node($table, $nid) {
  143. $sql = "SELECT " . $table . "_id as id FROM {chado_$table} WHERE nid = :nid";
  144. return db_query($sql, array(':nid' => $nid))->fetchField();
  145. }
  146. /**
  147. * Get node id for a chado feature/organism/analysis. E.g, if you want to
  148. * get the node id for an analysis, use:
  149. * $nid = chado_get_node_id ('analysis', $analysis_id)
  150. * Likewise,
  151. * $nid = chado_get_node_id ('organism', $organism_id)
  152. * $nid = chado_get_node_id ('feature', $feature_id)
  153. *
  154. * @ingroup tripal_chado_api
  155. */
  156. function chado_get_node_id($table, $id) {
  157. $sql = "SELECT nid FROM {chado_$table} WHERE " . $table . "_id = :" . $table . "_id";
  158. return db_query($sql, array(":" . $table . "_id" => $id))->fetchField();
  159. }
  160. /**
  161. * Set the Tripal Database
  162. *
  163. * The tripal_db_set_active function is used to prevent namespace collisions
  164. * when chado and drupal are installed in the same database but in different
  165. * schemas. It is also used for backwards compatibility with older versions
  166. * of tripal or in cases where chado is located outside of the Drupal database.
  167. * or when using Drupal functions such as db_table_exists()
  168. *
  169. * @ingroup tripal_chado_api
  170. */
  171. function tripal_db_set_active($dbname = 'default') {
  172. global $databases, $active_db;
  173. if ($dbname ) {
  174. if ($dbname == 'chado') {
  175. db_query('set search_path to chado,public');
  176. return 'default';
  177. }
  178. else {
  179. db_query('set search_path to public');
  180. return 'chado';
  181. }
  182. }
  183. // if the 'chado' database is in the $db_url variable then chado is
  184. // not in the same Drupal database, so we don't need to set any
  185. // search_path and can just change the database
  186. elseif (array_key_exists($dbname, $databases)) {
  187. return db_set_active($dbname);
  188. }
  189. }
  190. /**
  191. * Get max rank for a given set of criteria
  192. * This function was developed with the many property tables in chado in mind but will
  193. * work for any table with a rank
  194. *
  195. * @params tablename: the name of the chado table you want to select the max rank from
  196. * this table must contain a rank column of type integer
  197. * @params where_options: array(
  198. * <column_name> => array(
  199. * 'type' => <type of column: INT/STRING>,
  200. * 'value' => <the value you want to filter on>,
  201. * 'exact' => <if TRUE use =; if FALSE use ~>,
  202. * )
  203. * )
  204. * where options should include the id and type for that table to correctly
  205. * group a set of records together where the only difference are the value and rank
  206. * @return the maximum rank
  207. *
  208. * @ingroup tripal_chado_api
  209. */
  210. function tripal_core_get_max_chado_rank($tablename, $where_options) {
  211. $where_clauses = array();
  212. $where_args = array();
  213. //generate the where clause from supplied options
  214. // the key is the column name
  215. $i = 0;
  216. $sql = "
  217. SELECT max(rank) as max_rank, count(rank) as count
  218. FROM {".$tablename."}
  219. WHERE
  220. ";
  221. foreach ($where_options as $key => $value) {
  222. $where_clauses[] = "$key = :$key";
  223. $where_args[":$key"] = $value;
  224. }
  225. $sql .= implode($where_clauses, ' AND ');
  226. $result = chado_query($sql, $where_args)->fetchObject();
  227. if ($result->count > 0) {
  228. return $result->max_rank;
  229. }
  230. else {
  231. return -1;
  232. }
  233. }