tripal_chado.cv.api.inc 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614
  1. <?php
  2. /**
  3. * @file
  4. * This module provides a set of functions to simplify working with
  5. * controlled vocabularies.
  6. */
  7. /**
  8. * @defgroup tripal_chado_api Controlled Vocabulary API
  9. * @ingroup tripal_api
  10. * This module provides a set of functions to simplify working with
  11. * controlled vocabularies. Most of the API functions deal with retrieving
  12. * terms or their parent vocabularies.
  13. *
  14. * However, the API also supports
  15. * generation of trees for browsing a vocabulary as well as generation of
  16. * pie graphs for display of hierarchical counts of terms. Version 0.3b of
  17. * Tripal provides a feature browser and a feature summary chart uses
  18. * the API functions provided here. But in general charts and trees can be
  19. * created for any controlled vocabulary.
  20. *
  21. */
  22. /**
  23. * Retrieves a chado controlled vocabulary variable
  24. *
  25. * @param $identifier
  26. * An array with the key stating what the identifier is. Supported keys (only on of the
  27. * following unique keys is required):
  28. * - cv_id: the chado cv.cv_id primary key
  29. * - name: the chado cv.name field (assume unique)
  30. * @param $options
  31. * An array of options. Supported keys include:
  32. * - Any keys supported by chado_generate_var(). See that function definition for
  33. * additional details.
  34. *
  35. * NOTE: the $identifier parameter can really be any array similar to $values passed into
  36. * chado_select_record(). It should fully specify the cv record to be returned.
  37. *
  38. * @return
  39. * If unique values were passed in as an identifier then an object describing the cv
  40. * will be returned (will be a chado variable from chado_generate_var()). Otherwise,
  41. * FALSE will be returned.
  42. *
  43. * @ingroup tripal_chado_api
  44. */
  45. function tripal_get_cv($identifiers, $options = array()) {
  46. // Set Defaults
  47. if (!isset($options['include_fk'])) {
  48. // Tells chado_generate_var not to follow any foreign keys
  49. $options['include_fk'] = array();
  50. }
  51. // Error Checking of parameters
  52. if (!is_array($identifiers)) {
  53. tripal_report_error(
  54. 'tripal_chado_api',
  55. TRIPAL_ERROR,
  56. "tripal_get_cv: The identifier passed in is expected to be an array with the key
  57. matching a column name in the cv table (ie: cv_id or name). You passed in %identifier.",
  58. array(
  59. '%identifier'=> print_r($identifiers, TRUE)
  60. )
  61. );
  62. }
  63. elseif (empty($identifiers)) {
  64. tripal_report_error(
  65. 'tripal_chado_api',
  66. TRIPAL_ERROR,
  67. "tripal_get_cv: You did not pass in anything to identify the cv you want. The identifier
  68. is expected to be an array with the key matching a column name in the cv table
  69. (ie: cv_id or name). You passed in %identifier.",
  70. array(
  71. '%identifier'=> print_r($identifiers, TRUE)
  72. )
  73. );
  74. }
  75. // Try to get the cv
  76. $cv = chado_generate_var(
  77. 'cv',
  78. $identifiers,
  79. $options
  80. );
  81. // Ensure the cv is singular. If it's an array then it is not singular
  82. if (is_array($cv)) {
  83. tripal_report_error(
  84. 'tripal_chado_api',
  85. TRIPAL_ERROR,
  86. "tripal_get_cv: The identifiers you passed in were not unique. You passed in %identifier.",
  87. array(
  88. '%identifier'=> print_r($identifiers, TRUE)
  89. )
  90. );
  91. }
  92. // Report an error if $cv is FALSE since then chado_generate_var has failed
  93. elseif ($cv === FALSE) {
  94. tripal_report_error(
  95. 'tripal_chado_api',
  96. TRIPAL_ERROR,
  97. "tripal_get_cv: chado_generate_var() failed to return a cv based on the identifiers
  98. you passed in. You should check that your identifiers are correct, as well as, look
  99. for a chado_generate_var error for additional clues. You passed in %identifier.",
  100. array(
  101. '%identifier'=> print_r($identifiers, TRUE)
  102. )
  103. );
  104. }
  105. // Else, as far we know, everything is fine so give them their cv :)
  106. else {
  107. return $cv;
  108. }
  109. }
  110. /**
  111. * Create an options array to be used in a form element which provides a
  112. * list of all chado cvs
  113. *
  114. * @return
  115. * An array(cv_id => name) for each cv in the chado cv table
  116. *
  117. * @ingroup tripal_chado_api
  118. */
  119. function tripal_get_cv_select_options() {
  120. $results = chado_select_record('cv', array('cv_id', 'name'), array(), array('order_by' => array('name' => 'ASC')));
  121. $options = array();
  122. $options[] = 'Select a Vocabulary';
  123. foreach ($results as $r) {
  124. $options[$r->cv_id] = $r->name;
  125. }
  126. return $options;
  127. }
  128. /**
  129. * Retrieves a chado controlled vocabulary term variable
  130. *
  131. * @param $identifier
  132. * An array apropriate for use with the chado_generate_var for uniquely
  133. * identifying a cvterm record. Alternativley, there are also some specially
  134. * handled keys. They are:
  135. * - id: an ID for the term of the for [dbname]:[accession], where [dbname]
  136. * is the short name of the vocabulary and accession is the unique ID.
  137. * - cv_id: an integer indicating the cv_id or an array with 'name' => the
  138. * name of the cv.
  139. * - synonym: an array with 'name' => the name of the synonym of the cvterm
  140. * you want returned; 'cv_id' => the cv_id of the synonym; 'cv_name' =>
  141. * the name of the cv of the synonym
  142. * - property: An array/object describing the property to select records
  143. * for. It should at least have either a type_name (if unique across cvs)
  144. * or type_id. Other supported keys include: cv_id/cv_name (of the type),
  145. * value and rank
  146. * @param $options
  147. * An array of options. Supported keys include:
  148. * - Any keys supported by chado_generate_var(). See that function
  149. * definition for additional details.
  150. *
  151. * NOTE: the $identifier parameter can really be any array similar to $values
  152. * passed into chado_select_record(). It should fully specify the cvterm
  153. * record to be returned.
  154. *
  155. * @return
  156. * If unique values were passed in as an identifier then an object describing
  157. * the cvterm will be returned (will be a chado variable from
  158. * chado_generate_var()). Otherwise, FALSE will be returned.
  159. *
  160. * @ingroup tripal_cv_api
  161. */
  162. function tripal_get_cvterm($identifiers, $options = array()) {
  163. // Set Defaults
  164. if (!isset($options['include_fk'])) {
  165. // Tells chado_generate_var to only get the cv
  166. $options['include_fk'] = array('cv_id' => TRUE);
  167. }
  168. // Error Checking of parameters
  169. if (!is_array($identifiers)) {
  170. tripal_report_error('tripal_cv_api', TRIPAL_ERROR,
  171. "tripal_get_cvterm: The identifier passed in is expected to be an array with the key
  172. matching a column name in the cvterm table (ie: cvterm_id or name). You passed in %identifier.",
  173. array('%identifier'=> print_r($identifiers, TRUE))
  174. );
  175. }
  176. elseif (empty($identifiers)) {
  177. tripal_report_error('tripal_cv_api', TRIPAL_ERROR,
  178. "tripal_get_cvterm: You did not pass in anything to identify the cvterm you want. The identifier
  179. is expected to be an array with the key matching a column name in the cvterm table
  180. (ie: cvterm_id or name). You passed in %identifier.",
  181. array('%identifier'=> print_r($identifiers, TRUE))
  182. );
  183. }
  184. // If synonym was passed in, then process this first before calling chado_generate_var()
  185. if (isset($identifiers['synonym'])) {
  186. $synonym = $identifiers['synonym']['name'];
  187. $values = array('synonym' => $synonym);
  188. if (isset($identifiers['synonym']['cv_id'])) {
  189. $values['cvterm_id'] = array('cv_id' => $identifiers['synonym']['cv_id']);
  190. }
  191. if (isset($identifiers['synonym']['cv_name'])) {
  192. $values['cvterm_id'] = array('cv_id' => array('name' => $identifiers['synonym']['cv_name']));
  193. }
  194. $options = array(
  195. 'case_insensitive_columns' => array('name')
  196. );
  197. $result = chado_select_record('cvtermsynonym', array('cvterm_id'), $values, $options);
  198. // if the synonym doens't exist or more than one record is returned then return false
  199. if (count($result) == 0) {
  200. return FALSE;
  201. }
  202. if (count($result) > 1) {
  203. return FALSE;
  204. }
  205. $identifiers = array('cvterm_id' => $result[0]->cvterm_id);
  206. }
  207. // If one of the identifiers is property then use chado_get_record_with_property()
  208. if (isset($identifiers['property'])) {
  209. $property = $identifiers['property'];
  210. unset($identifiers['property']);
  211. $cvterm = chado_get_record_with_property(
  212. array('table' => 'cvterm', 'base_records' => $identifiers),
  213. array('type_name' => $property),
  214. $options
  215. );
  216. }
  217. if (isset($identifiers['id'])) {
  218. list($db_name, $accession) = preg_split('/:/', $identifiers['id']);
  219. $cvterm = chado_generate_var('cvterm',array(
  220. 'dbxref_id' => array(
  221. 'db_id' => array(
  222. 'name' => $db_name,
  223. ),
  224. 'accession' => $accession,
  225. )
  226. ));
  227. }
  228. // Else we have a simple case and we can just use chado_generate_var to get the cvterm
  229. else {
  230. // Try to get the cvterm
  231. $cvterm = chado_generate_var('cvterm', $identifiers, $options);
  232. }
  233. // Ensure the cvterm is singular. If it's an array then it is not singular
  234. if (is_array($cvterm)) {
  235. tripal_report_error(
  236. 'tripal_cv_api',
  237. TRIPAL_ERROR,
  238. "tripal_get_cvterm: The identifiers you passed in were not unique. You passed in %identifier.",
  239. array(
  240. '%identifier'=> print_r($identifiers, TRUE)
  241. )
  242. );
  243. }
  244. // Report an error if $cvterm is FALSE since then chado_generate_var has failed
  245. elseif ($cvterm === FALSE) {
  246. tripal_report_error(
  247. 'tripal_cv_api',
  248. TRIPAL_ERROR,
  249. "tripal_get_cvterm: chado_generate_var() failed to return a cvterm based on the identifiers
  250. you passed in. You should check that your identifiers are correct, as well as, look
  251. for a chado_generate_var error for additional clues. You passed in %identifier.",
  252. array(
  253. '%identifier'=> print_r($identifiers, TRUE)
  254. )
  255. );
  256. }
  257. // Else, as far we know, everything is fine so give them their cvterm :)
  258. else {
  259. return $cvterm;
  260. }
  261. }
  262. /**
  263. * Create an options array to be used in a form element
  264. * which provides a list of all chado cvterms
  265. *
  266. * @param $cv_id
  267. * The chado cv_id; only cvterms with the supplied cv_id will be returned
  268. * @param $rel_type
  269. * Set to TRUE if the terms returned should only be relationship types in
  270. * the vocabulary. This is useful for creating drop-downs of terms
  271. * used for relationship linker tables.
  272. *
  273. * @return
  274. * An associative array with the cvterm_id's as keys. The first
  275. * element in the array has a key of '0' and a value of 'Select a Type'
  276. *
  277. * @ingroup tripal_chado_api
  278. */
  279. function tripal_get_cvterm_select_options($cv_id, $rel_type = FALSE) {
  280. $columns = array('cvterm_id', 'name');
  281. $values = array('cv_id' => $cv_id);
  282. if ($rel_type) {
  283. $values['is_relationshiptype'] = 1;
  284. }
  285. $s_options = array('order_by' => array('name' => 'ASC'));
  286. $cvterms = chado_select_record('cvterm', $columns, $values, $s_options);
  287. $options = array();
  288. $options[0] = 'Select a Type';
  289. foreach ($cvterms as $cvterm) {
  290. $options[$cvterm->cvterm_id] = $cvterm->name;
  291. }
  292. return $options;
  293. }
  294. /**
  295. * Updates the cvtermpath table of Chado for the specified CV.
  296. *
  297. * @param $cv_id
  298. * The chado cv_id;
  299. * @param $job_id
  300. * This function is intended to be used with the Tripal Jobs API.
  301. * When this function is called as a job the $job_id is automatically
  302. * passed to this function.
  303. * @return
  304. * TRUE on success FALSE on failure
  305. *
  306. * @ingroup tripal_chado_api
  307. */
  308. function tripal_update_cvtermpath($cv_id, $job_id = NULL) {
  309. // TODO: need better error checking in this function
  310. // first get the controlled vocabulary name:
  311. $sql = "SELECT * FROM {cv} WHERE cv_id = :cv_id";
  312. $cv = chado_query($sql, array(':cv_id' => $cv_id))->fetchObject();
  313. print "\nUpdating cvtermpath for $cv->name...\n";
  314. // We need to set the chado schema as active because some of the
  315. // functions call other functions which would not be in scope.
  316. $previous = chado_set_active('chado');
  317. try {
  318. $sql = "SELECT * FROM fill_cvtermpath(:name)";
  319. db_query($sql, array(':name' => $cv->name));
  320. chado_set_active($previous);
  321. }
  322. catch (Exception $e) {
  323. chado_set_active($previous);
  324. $error = $e->getMessage();
  325. tripal_report_error('tripal_chado', TRIPAL_ERROR, "Could not fill cvtermpath table: @error", array('@error' => $error));
  326. return FALSE;
  327. }
  328. return TRUE;
  329. }
  330. /**
  331. * Duplicate of fill_cvtermpath() stored procedure in Chado.
  332. *
  333. * Identifies all of the root terms of the controlled vocabulary. These
  334. * root terms are then processed by calling the
  335. * tripal_update_cvtermpath_root_loop() function on each one.
  336. *
  337. * @param $cvid
  338. * The controlled vocabulary ID from the cv table of Chado (i.e. cv.cv_id).
  339. * @param $job_id
  340. */
  341. function tripal_update_cvtermpath_bak($cv_id, $job_id = NULL){
  342. // TODO: there's a function to determine the current Chado instance.
  343. // we should use that.
  344. $prev_db = chado_set_active('chado');
  345. try {
  346. $result = db_query('
  347. SELECT DISTINCT t.*
  348. FROM cvterm t
  349. LEFT JOIN cvterm_relationship r ON (t.cvterm_id = r.subject_id)
  350. INNER JOIN cvterm_relationship r2 ON (t.cvterm_id = r2.object_id)
  351. WHERE t.cv_id = :cvid AND r.subject_id is null',
  352. array(':cvid' => $cv_id)
  353. );
  354. // Iterate through each root level term.
  355. $record = $result->fetchAll();
  356. foreach ($record as $item){
  357. tripal_update_cvtermpath_root_loop($item->cvterm_id, $item->cv_id);
  358. }
  359. }
  360. catch (Exception $e) {
  361. // If there's an exception we have to set the database back. So, do that
  362. // and then rethrow the error.
  363. chado_set_active($prev_db);
  364. throw $e;
  365. }
  366. chado_set_active($prev_db);
  367. }
  368. /**
  369. * Duplicate of _fill_cvtermpath4root() stored procedure in Chado.
  370. *
  371. * This function process a "branch" of the ontology. Initially, the
  372. * "root" starts at the top of the tree. But, as the cvtermpath is populated
  373. * the "root" becomes terms deeper in the tree.
  374. *
  375. * @param $rootid
  376. * The term ID from the cvterm table of Chado (i.e. cvterm.cvterm_id).
  377. * @param $cvid
  378. * The controlled vocabulary ID from the cv table of Chado (i.e. cv.cv_id).
  379. */
  380. function tripal_update_cvtermpath_root_loop($rootid, $cvid){
  381. // Get's the cvterm record for this "root".
  382. chado_set_active('chado');
  383. $ttype = db_select('cvterm', 'cv')
  384. ->fields('cv', array('cvterm_id'));
  385. $db_or = db_or();
  386. $db_or->condition('cv.name', "isa", '=');
  387. $db_or->condition('cv.name', "is_a", '=');
  388. $ttype->condition($db_or);
  389. $result = $ttype->execute()->fetchObject();
  390. // Descends through the branch starting at this "root" term.
  391. tripal_update_cvtermpath_loop($rootid, $rootid, $rootid, $cvid, $result->cvterm_id, 0, array());
  392. // Get's the children terms of this "root" term and then recursively calls
  393. // this function making each child root.
  394. $cterm = db_query(
  395. 'SELECT *
  396. FROM cvterm_relationship
  397. WHERE object_id = :rootid
  398. ',
  399. array(':rootid' => $rootid)
  400. );
  401. while($cterm_result = $cterm->fetchAssoc()) {
  402. tripal_update_cvtermpath_root_loop($cterm_result['subject_id'], $cvid);
  403. }
  404. }
  405. /**
  406. *
  407. * @param $origin
  408. * The root terms cvterm_id.
  409. * @param $child_id
  410. * The cvterm_id of the current child term. The child term is a descendent
  411. * of the origin.
  412. * @param $cv_id
  413. * The controlled vocabulary ID from the cv table of Chado (i.e. cv.cv_id).
  414. * @param $type_id
  415. * The relationship type between the origin term and the child.
  416. * @param $depth
  417. * The depth of the recursion.
  418. * @param $tree_path.
  419. * The array of every term between the current child and the origin. The
  420. * string identifier for the child that combines the origin, parent cvterm_id,
  421. * child cvterm_id,cv_id, and the type_id.
  422. * @return multitype:
  423. */
  424. function tripal_update_cvtermpath_loop($origin, $parent_id, $child_id, $cv_id, $type_id, $depth, $tree_path){
  425. // Check to see if a row with these values already exists.
  426. chado_set_active('chado');
  427. $count = db_query(
  428. 'SELECT *
  429. FROM cvtermpath
  430. WHERE cv_id = :cvid
  431. AND object_id = :origin
  432. AND subject_id = :child_id
  433. AND pathdistance = :depth
  434. ',
  435. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':depth' => $depth)
  436. );
  437. $count_total = $count->rowCount();
  438. // If we've already seen this term then just return, we don't want
  439. // to insert it again.
  440. if ($count_total > 0) {
  441. return;
  442. }
  443. // Build the ID.
  444. $term_id = $origin . '|' . $parent_id . '|' . $child_id . '|' . $cv_id . '|' . $type_id;
  445. print($depth . "\t" .$term_id . "\n" );
  446. // If the child_id matches any other id in the array then we've hit a loop.
  447. foreach ($tree_path as $element_id) {
  448. if ($element_id == $term_id) {
  449. return;
  450. }
  451. }
  452. // We have not detected a loop, so it's safe to insert the term.
  453. $query = db_insert('cvtermpath')
  454. ->fields([
  455. 'object_id' => $origin,
  456. 'subject_id' => $child_id,
  457. 'cv_id' => $cv_id,
  458. 'type_id' => $type_id,
  459. 'pathdistance' => $depth,
  460. ]);
  461. $rows = $query->execute();
  462. // Then add that new entry to the $tree_path.
  463. $tree_path[] = $term_id;
  464. // Get all of the relationships of this child term, and recursively
  465. // call the tripal_update_cvtermpath_loop() function to continue
  466. // descending down the tree.
  467. $query = db_select('cvterm_relationship', 'cvtr')
  468. ->fields('cvtr')
  469. ->condition('cvtr.object_id', $child_id, '=')
  470. ->execute();
  471. $cterm_relationships = $query->fetchAll();
  472. foreach ($cterm_relationships as $item) {
  473. tripal_update_cvtermpath_loop($origin, $child_id, $item->subject_id, $cv_id,
  474. $item->type_id, $depth + 1, $tree_path);
  475. }
  476. }
  477. /**
  478. * @param $origin
  479. * @param $child_id
  480. * @param $cv_id
  481. * @param $type_id
  482. * @param $depth
  483. * @param $increment_of_depth
  484. * @param $distance_between_parent_child
  485. * @param $possible_start_of_loop
  486. * @param $array_of_possible_loop
  487. * @param $depth_at_start_of_loop
  488. *
  489. * @return bool
  490. */
  491. function tripal_update_cvtermpath_loop_checker($origin, $child_id, $cv_id, $type_id,
  492. $depth, $increment_of_depth, $distance_between_parent_child, $possible_start_of_loop,
  493. $array_of_possible_loop, $depth_at_start_of_loop){
  494. // Find the child terms of the current term via the relationship taboe.
  495. chado_set_active('chado');
  496. $query = db_select('cvterm_relationship', 'cvtr')
  497. ->fields('cvtr')
  498. ->condition('cvtr.object_id', $child_id, '=')
  499. ->execute();
  500. $cterm_relationships = $query->fetchAll();
  501. // Iterate through the child terms via the relationships.
  502. foreach ($cterm_relationships as $item){
  503. // Search the $tree_path for the new $child_id in the build_id column.
  504. foreach ($array_of_possible_loop as $parent) {
  505. if ($parent['build_id'] === $possible_start_of_loop['build_id']) {
  506. // If the search returns something check for a possible loop.
  507. if (!empty($parent)) {
  508. $result = tripal_update_cvtermpath_loop_checker_traverse($origin, $child_id,
  509. $cv_id, $type_id, $depth, $increment_of_depth, $possible_start_of_loop,
  510. $array_of_possible_loop, array(), 0);
  511. if(!empty($result)){
  512. break 2;
  513. }
  514. }
  515. }
  516. }
  517. $increment_of_depth++;
  518. $distance_between_parent_child++;
  519. $child_id = $origin . '|' . $item->subject_id . '|' . $cv_id . '|' . $item->type_id;
  520. $array_of_possible_loop[$distance_between_parent_child] = ['build_id' => $child_id];
  521. $result = tripal_update_cvtermpath_loop_checker($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1, $increment_of_depth, $distance_between_parent_child, $possible_start_of_loop, $array_of_possible_loop, $depth_at_start_of_loop);
  522. if($result !== FALSE){
  523. return $result;
  524. }
  525. }
  526. if (!empty($result)) {
  527. return $result;
  528. }
  529. else {
  530. return FALSE;
  531. }
  532. }
  533. function tripal_update_cvtermpath_loop_checker_traverse($origin, $child_id, $cv_id,
  534. $type_id, $depth, $increment_of_depth, $possible_start_of_loop, $array_of_possible_loop,
  535. $traverse_of_loop, $increment) {
  536. //watchdog('debug', '<pre>$increment: '. print_r($increment, TRUE) .'</pre>');
  537. /*if ($increment > 10) {
  538. die();
  539. }*/
  540. chado_set_active('chado');
  541. $query = db_select('cvterm_relationship', 'cvtr')
  542. ->fields('cvtr')
  543. ->condition('cvtr.object_id', $child_id, '=')
  544. ->execute();
  545. $cterm = $query->fetchAll();
  546. foreach ($cterm as $item) {
  547. if ($array_of_possible_loop === $traverse_of_loop) {
  548. watchdog('debug', 'LOOP');
  549. //Report the loop.
  550. $loop_found = end($array_of_possible_loop);
  551. break;
  552. }
  553. elseif ($array_of_possible_loop != $traverse_of_loop) {
  554. $increment_of_depth++;
  555. $increment++;
  556. $child_id = $origin . '|' . $item->subject_id . '|' . $cv_id . '|' . $item->type_id;
  557. $traverse_of_loop[$increment] = ['build_id' => $child_id];
  558. $result = tripal_update_cvtermpath_loop_checker_traverse($origin,
  559. $item->subject_id, $cv_id, $item->type_id, $depth + 1,
  560. $increment_of_depth, $possible_start_of_loop, $array_of_possible_loop,
  561. $traverse_of_loop, $increment);
  562. if ($result !== FALSE) {
  563. return $result;
  564. }
  565. }
  566. }
  567. if ($loop_found) {
  568. return $loop_found;
  569. }
  570. else {
  571. return FALSE;
  572. }
  573. }
  574. /*
  575. *
  576. * @param $origin
  577. * @param $subject_id
  578. * @param $cv_idxkcd
  579. * @param $type_id
  580. * @param $depth
  581. * @return multitype:
  582. function tripal_update_cvtermpath_loop($origin, $child_id, $cv_id, $type_id, $depth){
  583. // Variables and arrays needed for loop checking.
  584. $tree_path;
  585. $array_of_possible_loop;
  586. $possible_start_of_loop;
  587. $distance_between_parent_child;
  588. $increment_of_depth;
  589. chado_set_active('chado');
  590. $count = db_query(
  591. 'SELECT *
  592. FROM cvtermpath
  593. WHERE cv_id = :cvid
  594. AND object_id = :origin
  595. AND subject_id = :child_id
  596. AND pathdistance = :depth
  597. ',
  598. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':depth' => $depth)
  599. );
  600. $count_total = $count->rowCount();
  601. //Loop check
  602. chado_set_active('chado');
  603. $loop = db_query(
  604. 'SELECT *
  605. FROM cvtermpath
  606. WHERE cv_id = :cvid
  607. AND object_id = :origin
  608. AND subject_id = :child_id
  609. AND type_id = :type_id
  610. ',
  611. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':type_id' => $type_id,)
  612. );
  613. $loop_check = $loop->rowCount();
  614. //watchdog('debug', '<pre>tripal_ds_preprocess_TripalEntity $rows ' . print_r($rows, TRUE) . '</pre>');
  615. /*if(!empty($rows)){
  616. foreach($rows as $row){
  617. tripal_update_cvtermpath_loop_check($origin, $child_id, $cv_id, $type_id, $depth, $row->cvtermpath_id, 0);
  618. }
  619. }
  620. else {*/
  621. //If no loop proceed.
  622. /*try{
  623. if($count_total == 0) {
  624. chado_set_active('chado');
  625. $query = db_insert('cvtermpath')
  626. ->fields(array(
  627. 'object_id' => $origin,
  628. 'subject_id' => $child_id,
  629. 'cv_id' => $cv_id,
  630. 'type_id' => $type_id,
  631. 'pathdistance' => $depth,
  632. ));
  633. $rows = $query->execute();
  634. }
  635. if ($loop_check == 0) {
  636. chado_set_active('chado');
  637. $query = db_select('cvterm_relationship', 'cvtr')
  638. ->fields('cvtr')
  639. ->condition('cvtr.object_id', $child_id, '=')
  640. ->execute();
  641. $cterm = $query->fetchAll();
  642. foreach ($cterm as $item) {
  643. //watchdog('debug', '<pre>tripal_ds_preprocess_TripalEntity $item ' . print_r($item, TRUE) . '</pre>');
  644. tripal_update_cvtermpath_loop($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1);
  645. };
  646. //}
  647. }
  648. }
  649. catch(Exception $e){
  650. watchdog_exception('tripal_ds', $e);
  651. return FALSE;
  652. }
  653. return 1;
  654. }
  655. */
  656. /**
  657. *
  658. * @param $origin
  659. * @param $subject_id
  660. * @param $cv_id
  661. * @param $type_id
  662. * @param $depth
  663. * @return multitype:
  664. function tripal_update_cvtermpath_loop_check($origin, $child_id, $cv_id, $type_id, $depth, $cvtermpath_id, $loop_count, $loop_check, $object_id){
  665. //Store the
  666. //Check if the passed parameters match any of the items in the loop_check array.
  667. if(!empty($loop_check)){
  668. foreach($loop_check as $item){
  669. if ($item['type_id'] = $type_id){
  670. if($item['subject_id'] = $child_id){
  671. if($item['object_id'] = $object_id){
  672. //Loop found, roll back all rows until $cvtermpath_id-1 (last correct entry)
  673. // and step into the next loop
  674. }
  675. }
  676. }
  677. }
  678. }
  679. $loop_count + 1;
  680. chado_set_active('chado');
  681. $count = db_query(
  682. 'SELECT *
  683. FROM cvtermpath
  684. WHERE cv_id = :cvid AND object_id = :origin
  685. AND subject_id = :child_id
  686. AND pathdistance = :depth
  687. ',
  688. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':depth' => $depth)
  689. );
  690. $count_total = $count->rowCount();
  691. if ($count_total == 0) {
  692. chado_set_active('chado');
  693. $query = db_insert('cvtermpath')
  694. ->fields(array(
  695. 'object_id' => $origin,
  696. 'subject_id' => $child_id,
  697. 'cv_id' => $cv_id,
  698. 'type_id' => $type_id,
  699. 'pathdistance' => $depth,
  700. ));
  701. $rows = $query->execute();
  702. $cterm = array();
  703. $query = db_select('cvterm_relationship', 'cvtr')
  704. ->fields('cvtr')
  705. ->condition('cvtr.object_id', $child_id, '=' )
  706. ->execute();
  707. $cterm = $query->fetchAll();
  708. foreach ($cterm as $item) {
  709. $loop_check[$loop_count]= $item;
  710. tripal_update_cvtermpath_loop_check($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1, $loop_count, $loop_check, $item->object_id);
  711. };
  712. }
  713. return 1;
  714. }
  715. */
  716. /**
  717. * Adds a controlled vocabular to the CV table of Chado.
  718. *
  719. * @param $name
  720. * The name of the controlled vocabulary. These are typically all lower case
  721. * with no special characters other than an undrescore (for spaces).
  722. * @param $comment
  723. * A description or definition of the vocabulary.
  724. *
  725. * @return
  726. * An object populated with fields from the newly added database.
  727. *
  728. * @ingroup tripal_chado_api
  729. */
  730. function tripal_insert_cv($name, $definition) {
  731. // insert/update values
  732. $ins_values = array(
  733. 'name' => $name,
  734. 'definition' => $definition
  735. );
  736. // see if the CV default exists already in the database
  737. $sel_values = array('name' => $name);
  738. $results = chado_select_record('cv', array('*'), $sel_values);
  739. // if it does not exists then add it
  740. if (count($results) == 0) {
  741. $success = chado_insert_record('cv', $ins_values);
  742. if (!$success) {
  743. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to create the CV record", NULL);
  744. return FALSE;
  745. }
  746. $results = chado_select_record('cv', array('*'), $sel_values);
  747. }
  748. // if it already exists then do an update
  749. else {
  750. $success = chado_update_record('cv', $sel_values, $ins_values);
  751. if (!$success) {
  752. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to update the CV record", NULL);
  753. return FALSE;
  754. }
  755. $results = chado_select_record('cv', array('*'), $sel_values);
  756. }
  757. // return the cv object
  758. return $results[0];
  759. }
  760. /**
  761. * Add's a controlled vocabulary term to Chado.
  762. *
  763. * This function will add a cvterm record (and a dbxref record if appropriate
  764. * values are provided). If the parent vocabulary does not exist then
  765. * that also is added to the cv table. If the cvterm is a relationship term
  766. * then the 'is_relationship' value should be set. All
  767. * terms must also have a corresponding database. This is specified in the
  768. * term's ID just before the colon (e.g. GO:003824). If the database does not
  769. * exist in the DB table then it will be added automatically. The accession
  770. * (the value just after the colon in the term's ID) will be added to the
  771. * dbxref table. If the CVterm already exists and $update is set (default)
  772. * then the cvterm is updated. If the CVTerm already exists and $update is
  773. * not set, then no changes are made and the CVTerm object is returned.
  774. *
  775. * @param $term
  776. * An associative array with the following keys:
  777. * - id: the term accession. must be of the form <DB>:<ACCESSION>, where
  778. * <DB> is the name of the database to which the cvterm belongs and the
  779. * <ACCESSION> is the term's accession number in the database.
  780. * - name: the name of the term. usually meant to be human-readable.
  781. * - is_obsolete: is present and set to 1 if the term is defunct
  782. * - definition: the definition of the term
  783. * - cv_name: The CV name to which the term belongs. If this arugment is
  784. * null or not provided then the function tries to find a record in the
  785. * CV table with the same name provided in the $term[namespace]. If
  786. * this field is provided then it overrides what the value in
  787. * $term[namespace]
  788. * - is_relationship: If this term is a relationship term then this value
  789. * should be 1.
  790. * - db_name: In some cases the database name will not be part of the
  791. * $term['id'] and it needs to be explicitly set. Use this argument
  792. * only if the database name cannot be specififed in the term ID
  793. * (e.g. <DB>:<ACCESSION>).
  794. * @param $options
  795. * An associative array with the following keys:
  796. * - update_existing: By default this is TRUE. If the term exists it is
  797. * automatically updated.
  798. * - force_db_change: Sometimes a term may need to switch from one
  799. * database to another. If the term already exists, but associated
  800. * with another term the insert (or update, rather) will fail. Set
  801. * this variable to TRUE to force the change to occur.
  802. *
  803. * @return
  804. * A cvterm object
  805. *
  806. * @ingroup tripal_chado_api
  807. */
  808. function tripal_insert_cvterm($term, $options = array()) {
  809. // get the term properties
  810. $id = (isset($term['id'])) ? $term['id'] : '';
  811. $name = '';
  812. $cvname = '';
  813. $definition = '';
  814. $is_obsolete = 0;
  815. $accession = '';
  816. // Set Defaults
  817. if (isset($term['cv_name'])) {
  818. $cvname = $term['cv_name'];
  819. }
  820. else {
  821. $cvname = 'local';
  822. }
  823. // Namespace is deprecated but must be supported for backwards
  824. // compatability
  825. if (array_key_exists('namespace', $term)) {
  826. $cvname = $term['namespace'];
  827. }
  828. if (isset($term['is_relationship'])) {
  829. $is_relationship = $term['is_relationship'];
  830. }
  831. else {
  832. $is_relationship = 0;
  833. }
  834. if (isset($term['db_name'])) {
  835. $dbname = $term['db_name'];
  836. }
  837. else {
  838. $dbname = 'local';
  839. }
  840. if (isset($options['update_existing'])) {
  841. $update = $options['update_existing'];
  842. }
  843. else {
  844. $update = 1;
  845. }
  846. if (array_key_exists('name', $term)) {
  847. $name = $term['name'];
  848. }
  849. else {
  850. $name = $id;
  851. }
  852. if (array_key_exists('definition', $term)) {
  853. $definition = preg_replace('/^\"(.*)\"/', '\1', $term['definition']);
  854. }
  855. else {
  856. $definition = '';
  857. }
  858. if (array_key_exists('is_obsolete', $term)) {
  859. $is_obsolete = $term['is_obsolete'];
  860. if (strcmp($is_obsolete, 'true') == 0) {
  861. $is_obsolete = 1;
  862. }
  863. }
  864. if (!$name and !$id) {
  865. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Cannot find cvterm without 'id' or 'name'", NULL);
  866. return 0;
  867. }
  868. if (!$id) {
  869. $id = $name;
  870. }
  871. // Get the accession and the database from the cvterm id.
  872. if ($dbname) {
  873. $accession = $id;
  874. }
  875. if (preg_match('/^.+?:.*$/', $id)) {
  876. $accession = preg_replace('/^.+?:(.*)$/', '\1', $id);
  877. $dbname = preg_replace('/^(.+?):.*$/', '\1', $id);
  878. }
  879. // Check that we have a database name, give a different message if it's a
  880. // relationship.
  881. if ($is_relationship and !$dbname) {
  882. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  883. "A database name is not provided for this relationship term: $id", NULL);
  884. return 0;
  885. }
  886. if (!$is_relationship and !$dbname) {
  887. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  888. "A database identifier is missing from the term: $id", NULL);
  889. return 0;
  890. }
  891. // Make sure the CV name exists
  892. $cv = tripal_get_cv(array('name' => $cvname));
  893. if (!$cv) {
  894. $cv = tripal_insert_cv($cvname, '');
  895. }
  896. if (!$cv) {
  897. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  898. "Cannot find namespace '$cvname' when adding/updating $id", NULL);
  899. return 0;
  900. }
  901. // This SQL statement will be used a lot to find a cvterm so just set it
  902. // here for easy reference below. Because CV terms can change their names
  903. // but accessions don't change, the following SQL finds cvterms based on
  904. // their accession rather than the name.
  905. $cvtermsql = "
  906. SELECT CVT.name, CVT.cvterm_id, CV.cv_id, CV.name as cvname,
  907. DB.name as dbname, DB.db_id, DBX.accession
  908. FROM {cvterm} CVT
  909. INNER JOIN {dbxref} DBX on CVT.dbxref_id = DBX.dbxref_id
  910. INNER JOIN {db} DB on DBX.db_id = DB.db_id
  911. INNER JOIN {cv} CV on CV.cv_id = CVT.cv_id
  912. WHERE DBX.accession = :accession and DB.name = :name
  913. ";
  914. // Add the database. The function will just return the DB object if the
  915. // database already exists.
  916. $db = tripal_get_db(array('name' => $dbname));
  917. if (!$db) {
  918. $db = tripal_insert_db(array('name' => $dbname));
  919. }
  920. if (!$db) {
  921. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Cannot find database '$dbname' in Chado.", NULL);
  922. return 0;
  923. }
  924. // The cvterm table has two unique dependencies. We need to check both.
  925. // first check the (name, cv_id, is_obsolete) constraint.
  926. $values = array(
  927. 'name' => $name,
  928. 'is_obsolete' => $is_obsolete,
  929. 'cv_id' => array(
  930. 'name' => $cvname,
  931. ),
  932. );
  933. $result = chado_select_record('cvterm', array('*'), $values);
  934. if (count($result) == 1) {
  935. $cvterm = $result[0];
  936. // Get the dbxref record.
  937. $values = array('dbxref_id' => $cvterm->dbxref_id);
  938. $result = chado_select_record('dbxref', array('*'), $values);
  939. $dbxref = $result[0];
  940. if (!$dbxref) {
  941. tripal_report_error('tripal_cv', TRIPAL_ERROR,
  942. 'Unable to access the dbxref record for the :term cvterm. Term Record: !record',
  943. array(':term' => $name, '!record' => print_r($cvterm, TRUE))
  944. );
  945. return FALSE;
  946. }
  947. // Get the db.
  948. $values = array('db_id' => $dbxref->db_id);
  949. $result = chado_select_record('db', array('*'), $values);
  950. $db_check = $result[0];
  951. // If the database from the existing record doesn't match the one that
  952. // has been provided then we have a problem. The term already exists
  953. // but we don't want to just switch the term, the callee must force it.
  954. if ($db_check->name != $db->name) {
  955. if (array_key_exists('force_db_change', $options) and
  956. $options['force_db_change'] != TRUE) {
  957. tripal_report_error('tripal_cv', TRIPAL_ERROR,
  958. 'The term already exists, but associated with a different database record: \'!db\'. It cannot be added: !record',
  959. array(':term' => $name, '!db' => $db_check->name, '!record' => print_r($cvterm, TRUE))
  960. );
  961. return FALSE;
  962. }
  963. // Look to see if the correct dbxref record already exists for this
  964. // database.
  965. $values = array(
  966. 'db_id' => $db->db_id,
  967. 'accession' => $accession,
  968. );
  969. $result = chado_select_record('dbxref', array('*'), $values);
  970. // If we already have a good dbxref then we want to update our cvterm
  971. // to use this dbxref.
  972. if (count($result) > 0) {
  973. $dbxref = $result[0];
  974. $match = array('cvterm_id' => $cvterm->cvterm_id);
  975. $values = array('dbxref_id' => $dbxref->dbxref_id);
  976. $success = chado_update_record('cvterm', $match, $values);
  977. if (!$success) {
  978. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to correct the dbxref id for the cvterm " .
  979. "'$name' (id: $accession), for database $dbname", NULL);
  980. return 0;
  981. }
  982. }
  983. // If we don't have the dbxref then we want to delete our cvterm and let
  984. // the code below recreate it with the correct info.
  985. else {
  986. $match = array('cvterm_id' => $cvterm->cvterm_id);
  987. chado_delete_record('cvterm', $match);
  988. }
  989. }
  990. // Check that the accession matches. Sometimes an OBO can define a term
  991. // multiple times but with different accessions. If this is the case we
  992. // can't do an insert or it will violate the constraint in the cvterm table.
  993. // So we'll need to add the record to the cvterm_dbxref table instead.
  994. if ($dbxref->accession != $accession) {
  995. // Get/add the dbxref for his term.
  996. $dbxref_new = tripal_insert_dbxref(array(
  997. 'db_id' => $db->db_id,
  998. 'accession' => $accession
  999. ));
  1000. if (!$dbxref_new) {
  1001. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the dbxref record for cvterm, " .
  1002. "$name (id: $accession), for database $dbname", NULL);
  1003. return 0;
  1004. }
  1005. // Check to see if the cvterm_dbxref record already exists.
  1006. $values = array(
  1007. 'cvterm_id' => $cvterm->cvterm_id,
  1008. 'dbxref_id' => $dbxref_new->dbxref_id,
  1009. 'is_for_definition' => 1,
  1010. );
  1011. $result = chado_select_record('cvterm_dbxref', array('*'), $values);
  1012. // if the cvterm_dbxref record does not exists then add it
  1013. if (count($result)==0) {
  1014. $options = array(
  1015. 'return_record' => FALSE,
  1016. );
  1017. $success = chado_insert_record('cvterm_dbxref', $values, $options);
  1018. if (!$success) {
  1019. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the cvterm_dbxref record for a " .
  1020. "duplicated cvterm: $name (id: $accession), for database $dbname", NULL);
  1021. return 0;
  1022. }
  1023. }
  1024. // get the original cvterm with the same name and return that.
  1025. $result = chado_query($cvtermsql, array(':accession' => $dbxref->accession, ':name' => $dbname));
  1026. $cvterm = $result->fetchObject();
  1027. return $cvterm;
  1028. }
  1029. // Continue on, we've fixed the record if the db_id did not match.
  1030. // We can now perform and updated if we need to.
  1031. }
  1032. // get the CVterm record
  1033. $result = chado_query($cvtermsql, array(':accession' => $accession, ':name' => $dbname));
  1034. $cvterm = $result->fetchObject();
  1035. if (!$cvterm) {
  1036. // Check to see if the dbxref exists if not, add it.
  1037. $dbxref = tripal_insert_dbxref(array(
  1038. 'db_id' => $db->db_id,
  1039. 'accession' => $accession
  1040. ));
  1041. if (!$dbxref) {
  1042. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the dbxref record for cvterm, " .
  1043. "$name (id: $accession), for database $dbname", NULL);
  1044. return 0;
  1045. }
  1046. // Check to see if the dbxref already has an entry in the cvterm table.
  1047. $values = array('dbxref_id' => $dbxref->dbxref_id);
  1048. $check = chado_select_record('cvterm', array('cvterm_id'), $values);
  1049. if (count($check) == 0) {
  1050. // now add the cvterm
  1051. $ins_values = array(
  1052. 'cv_id' => $cv->cv_id,
  1053. 'name' => $name,
  1054. 'definition' => $definition,
  1055. 'dbxref_id' => $dbxref->dbxref_id,
  1056. 'is_obsolete' => $is_obsolete,
  1057. 'is_relationshiptype' => $is_relationship,
  1058. );
  1059. $success = chado_insert_record('cvterm', $ins_values);
  1060. if (!$success) {
  1061. if (!$is_relationship) {
  1062. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to insert the term: $name ($dbname)", NULL);
  1063. return 0;
  1064. }
  1065. else {
  1066. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to insert the relationship term: $name (cv: " . $cvname . " db: $dbname)", NULL);
  1067. return 0;
  1068. }
  1069. }
  1070. }
  1071. // This dbxref already exists in the cvterm table.
  1072. else {
  1073. tripal_report_error('tripal_chado', TRIPAL_WARNING, "The dbxref already exists for another cvterm record: $name (cv: " . $cvname . " db: $dbname)", NULL);
  1074. return 0;
  1075. }
  1076. $result = chado_query($cvtermsql, array(':accession' => $accession, ':name' => $dbname));
  1077. $cvterm = $result->fetchObject();
  1078. }
  1079. // Update the cvterm.
  1080. elseif ($update) {
  1081. // First, basic update of the term.
  1082. $match = array('cvterm_id' => $cvterm->cvterm_id);
  1083. $upd_values = array(
  1084. 'name' => $name,
  1085. 'definition' => $definition,
  1086. 'is_obsolete' => $is_obsolete,
  1087. 'is_relationshiptype' => $is_relationship,
  1088. );
  1089. $success = chado_update_record('cvterm', $match, $upd_values);
  1090. if (!$success) {
  1091. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to update the term: $name", NULL);
  1092. return 0;
  1093. }
  1094. // Second, check that the dbxref has not changed and if it has then update it.
  1095. $checksql = "
  1096. SELECT cvterm_id
  1097. FROM {cvterm} CVT
  1098. INNER JOIN {dbxref} DBX on CVT.dbxref_id = DBX.dbxref_id
  1099. INNER JOIN {db} DB on DBX.db_id = DB.db_id
  1100. INNER JOIN {cv} CV on CV.cv_id = CVT.cv_id
  1101. WHERE DBX.accession = :accession and DB.name = :dbname and CVT.name = :term and CV.name = :cvname
  1102. ";
  1103. $check = chado_query($checksql, array(':accession' => $dbxref->accession, ':dbname' => $dbname, ':term' => $name, ':cvname' => $cvname))->fetchObject();
  1104. if (!$check) {
  1105. // check to see if the dbxref exists if not, add it.
  1106. $dbxref = tripal_insert_dbxref(array(
  1107. 'db_id' => $db->db_id,
  1108. 'accession' => $accession
  1109. ));
  1110. if (!$dbxref) {
  1111. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the dbxref record for cvterm, " .
  1112. "$name (id: $accession), for database $dbname", NULL);
  1113. return 0;
  1114. }
  1115. $match = array('cvterm_id' => $cvterm->cvterm_id);
  1116. $upd_values = array(
  1117. 'dbxref_id' => $dbxref->dbxref_id,
  1118. );
  1119. $success = chado_update_record('cvterm', $match, $upd_values);
  1120. if (!$success) {
  1121. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to update the term $name with new accession $db:$accession", NULL);
  1122. return 0;
  1123. }
  1124. }
  1125. // Finally grab the updated details.
  1126. $result = chado_query($cvtermsql, array(':accession' => $dbxref->accession, ':name' => $dbname));
  1127. $cvterm = $result->fetchObject();
  1128. }
  1129. else {
  1130. // do nothing, we have the cvterm but we don't want to update
  1131. }
  1132. // return the cvterm
  1133. return $cvterm;
  1134. }
  1135. /**
  1136. * TODO: deprecate this function
  1137. *
  1138. * This function allows other modules to programatically
  1139. * submit an ontology for loading into Chado.
  1140. *
  1141. * This function will add a job to the Jobs subsystem for parsing the ontology.
  1142. * You can either pass a known OBO ID to the function or the URL
  1143. * or full path the the ontology file. If a URL or file name is
  1144. * passed then the $obo_name argument must also be provided. If
  1145. * this is the first time the ontology has been provided to Tripal
  1146. * then it will be added to the database and will be assigned a
  1147. * unique OBO ID.
  1148. *
  1149. * @param $obo_id
  1150. * If the ontology is already loaded into the Tripal tables then
  1151. * use this argument to specify the unique ID for the ontology
  1152. * that will be loaded
  1153. * @param $obo_name
  1154. * If the OBO has not been added before then use this argument
  1155. * to specify the human readable name of the ontology.
  1156. * @param $obo_url
  1157. * If the OBO to be loaded is located on a remote server then
  1158. * use this argument to provide the URL.
  1159. * @param $obo_file
  1160. * If the OBO is housed on the local file system of the server then
  1161. * use this argument to specify the full path.
  1162. *
  1163. * @return
  1164. * returns the job_id of the submitted job or FALSE if the job was not added
  1165. *
  1166. * @ingroup tripal_chado_api
  1167. */
  1168. function tripal_submit_obo_job($obo) {
  1169. global $user;
  1170. // Set Defaults
  1171. $obo['obo_id'] = (isset($obo['obo_id'])) ? $obo['obo_id'] : NULL;
  1172. $obo['name'] = (isset($obo['name'])) ? $obo['name'] : NULL;
  1173. $obo['url'] = (isset($obo['url'])) ? $obo['url'] : NULL;
  1174. $obo['file'] = (isset($obo['file'])) ? $obo['file'] : NULL;
  1175. $includes = array(
  1176. module_load_include('inc', 'tripal_chado', 'includes/loaders/tripal_chado.obo_loader'),
  1177. );
  1178. if ($obo['obo_id']) {
  1179. $sql = "SELECT * FROM {tripal_cv_obo} WHERE obo_id = :obo_id";
  1180. $result = db_query($sql, array(':obo_id' => $obo['obo_id']))->fetchObject();
  1181. $args = array($result->obo_id);
  1182. return tripal_add_job("Load OBO " . $result->name, 'tripal_chado',
  1183. "tripal_chado_load_obo_v1_2_id", $args, $user->uid, 10, $includes);
  1184. }
  1185. else {
  1186. if ($obo['url']) {
  1187. $args = array($obo['name'], $obo['url']);
  1188. return tripal_add_job("Load OBO " . $obo['name'], 'tripal_chado',
  1189. "tripal_chado_load_obo_v1_2_url", $args, $user->uid, 10, $includes);
  1190. }
  1191. elseif ($obo['file']) {
  1192. $args = array($obo['name'], $obo['file']);
  1193. return tripal_add_job("Load OBO " . $obo['name'], 'tripal_chado',
  1194. "tripal_chado_load_obo_v1_2_file", $args, $user->uid, 10, $includes);
  1195. }
  1196. }
  1197. return FALSE;
  1198. }
  1199. /**
  1200. * Add the OBO to the tripal_cv_obo table in the Drupal database.
  1201. *
  1202. * If the OBO name already exists in the table then the path is updated.
  1203. *
  1204. * @param $name
  1205. * The human readable name of this ontology
  1206. * @param $path
  1207. * The file path or URL of the ontology
  1208. *
  1209. * @return
  1210. * Returns the ontology ID
  1211. *
  1212. * @ingroup tripal_chado_api
  1213. */
  1214. function tripal_insert_obo($name, $path) {
  1215. // make sure an OBO with the same name doesn't already exist
  1216. $obo_id = db_select('tripal_cv_obo', 'tco')
  1217. ->fields('tco', array('obo_id'))
  1218. ->condition('name', $name)
  1219. ->execute()
  1220. ->fetchField();
  1221. if ($obo_id) {
  1222. db_update('tripal_cv_obo')
  1223. ->fields(array(
  1224. 'path' => $path,
  1225. ))
  1226. ->condition('name', $name)
  1227. ->execute();
  1228. return $obo_id;
  1229. }
  1230. else {
  1231. $obo_id = db_insert('tripal_cv_obo')
  1232. ->fields(array(
  1233. 'name' => $name,
  1234. 'path' => $path,
  1235. ))
  1236. ->execute();
  1237. return $obo_id;
  1238. }
  1239. }
  1240. /**
  1241. * Retrieves an OBO record.
  1242. *
  1243. * @param $values
  1244. * An associate array with the following allowed keys: obo_id, name
  1245. *
  1246. * @return
  1247. * An instance of an OBO record object.
  1248. */
  1249. function tripal_get_obo($values) {
  1250. $query = db_select('tripal_cv_obo', 'tco')
  1251. ->fields('tco');
  1252. if (array_key_exists('name', $values)) {
  1253. $query->condition('tco.name', $values['name']);
  1254. }
  1255. if (array_key_exists('obo_id', $values)) {
  1256. $query->condition('tco.obo_id', $values['obo_id']);
  1257. }
  1258. return $query->execute()->fetchObject();
  1259. }
  1260. /**
  1261. * This function is intended to be used in autocomplete forms
  1262. * for searching for CV terms that begin with the provided string
  1263. *
  1264. * @param $cv_id
  1265. * The CV ID in which to search for the term
  1266. * @param $string
  1267. * The string to search for
  1268. *
  1269. * @return
  1270. * A json array of terms that begin with the provided string
  1271. *
  1272. * @ingroup tripal_chado_api
  1273. */
  1274. function tripal_autocomplete_cvterm($cv_id, $string = '') {
  1275. if ($cv_id) {
  1276. $sql = "
  1277. SELECT CVT.cvterm_id, CVT.name
  1278. FROM {cvterm} CVT
  1279. WHERE CVT.cv_id = :cv_id and lower(CVT.name) like lower(:name)
  1280. UNION
  1281. SELECT CVT2.cvterm_id, CVTS.synonym as name
  1282. FROM {cvterm} CVT2
  1283. INNER JOIN {cvtermsynonym} CVTS ON CVTS.cvterm_id = CVT2.cvterm_id
  1284. WHERE CVT2.cv_id = :cv_id and lower(CVTS.synonym) like lower(:name)
  1285. ORDER by name
  1286. LIMIT 25 OFFSET 0
  1287. ";
  1288. $results = chado_query($sql, array(':cv_id' => $cv_id, ':name' => $string . '%'));
  1289. $items = array();
  1290. foreach ($results as $term) {
  1291. $items[$term->name] = $term->name;
  1292. }
  1293. }
  1294. // If a CV wasn't provided then search all of them, and include the cv
  1295. // in the results.
  1296. else {
  1297. $sql = "
  1298. SELECT CVT.cvterm_id, CVT.name, CV.name as cvname, CVT.cv_id
  1299. FROM {cvterm} CVT
  1300. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  1301. WHERE lower(CVT.name) like lower(:name)
  1302. UNION
  1303. SELECT CVT2.cvterm_id, CVTS.synonym as name, CV2.name as cvname, CVT2.cv_id
  1304. FROM {cvterm} CVT2
  1305. INNER JOIN {cv} CV2 on CVT2.cv_id = CV2.cv_id
  1306. INNER JOIN {cvtermsynonym} CVTS ON CVTS.cvterm_id = CVT2.cvterm_id
  1307. WHERE lower(CVTS.synonym) like lower(:name)
  1308. ORDER by name
  1309. LIMIT 25 OFFSET 0
  1310. ";
  1311. $results = chado_query($sql, array(':name' => $string . '%'));
  1312. $items = array();
  1313. foreach ($results as $term) {
  1314. $items[$term->name] = $term->name;
  1315. }
  1316. }
  1317. drupal_json_output($items);
  1318. }
  1319. /**
  1320. * Add a record to a cvterm linking table (ie: feature_cvterm)
  1321. *
  1322. * @param $basetable
  1323. * The base table to which the cvterm should be linked/associated. Thus to associate a
  1324. * cvterm to a feature the basetable=feature and cvterm_id is added to the feature_cvterm table.
  1325. * @param $record_id
  1326. * The primary key of the basetable to associate the cvterm with. This should be in integer.
  1327. * @param $cvterm
  1328. * An associative array describing the cvterm. Valid keys include:
  1329. * - name: the name for the cvterm,
  1330. * - cv_name: the name of the cv the cvterm belongs to.
  1331. * - cv_id: the primary key of the cv the cvterm belongs to.
  1332. * @param $options
  1333. * An associative array of options. Valid keys include:
  1334. * - insert_cvterm: Insert the cvterm if it doesn't already exist. FALSE is the default
  1335. *
  1336. * @ingroup tripal_chado_api
  1337. */
  1338. function tripal_associate_cvterm($basetable, $record_id, $cvterm, $options = array()) {
  1339. $linking_table = $basetable . '_cvterm';
  1340. $foreignkey_name = $basetable . '_id';
  1341. // Default Values
  1342. $options['insert_cvterm'] = (isset($options['insert_cvterm'])) ? $options['insert_cvterm'] : FALSE;
  1343. // If the cvterm_id is not set then find the cvterm record using the name and cv_id
  1344. if (!isset($cvterm['cvterm_id'])) {
  1345. $values = array(
  1346. 'name' => $cvterm['name'],
  1347. );
  1348. if (isset($cvterm['cv_id'])) {
  1349. $values['cv_id'] = $cvterm['cv_id'];
  1350. }
  1351. elseif (isset($cvterm['cv_name'])) {
  1352. $values['cv_id'] = array(
  1353. 'name' => $cvterm['cv_name']
  1354. );
  1355. }
  1356. else {
  1357. tripal_report_error('tripal_chado_api', TRIPAL_WARNING,
  1358. "tripal_associate_cvterm: The cvterm needs to have either the cv_name or cv_id
  1359. supplied. You were trying to associate a cvterm with the %base %record_id
  1360. and supplied the cvterm values: %cvterm.",
  1361. array('%base' => $basetable, '%record_id' => $record_id, '%cvterm' => print_r($cvterm,TRUE))
  1362. );
  1363. return FALSE;
  1364. }
  1365. // Get the cvterm. If it doesn't exist then add it if the option
  1366. // 'insert_cvterm' is set.
  1367. $select = chado_select_record('cvterm', array('*'), $values);
  1368. if ($select) {
  1369. $cvterm['cvterm_id'] = $select[0]->cvterm_id;
  1370. }
  1371. elseif ($options['insert_cvterm']) {
  1372. // Insert the cvterm
  1373. $insert = tripal_insert_cvterm($values);
  1374. if (isset($insert->cvterm_id)) {
  1375. $cvterm['cvterm_id'] = $insert->cvterm_id;
  1376. }
  1377. else {
  1378. tripal_report_error('tripal_chado_api', TRIPAL_WARNING,
  1379. "tripal_associate_cvterm: Unable to insert the cvterm using the cvterm values: %cvterm.",
  1380. array('%cvterm' => print_r($cvterm,TRUE))
  1381. );
  1382. return FALSE;
  1383. }
  1384. }
  1385. else {
  1386. tripal_report_error('tripal_api', TRIPAL_WARNING,
  1387. "tripal_associate_cvterm: The cvterm doesn't already exist. You supplied the cvterm values: %cvterm.",
  1388. array('%cvterm' => print_r($cvterm,TRUE))
  1389. );
  1390. return FALSE;
  1391. }
  1392. }
  1393. // Now add the link between the record & cvterm
  1394. if ($cvterm['cvterm_id'] > 0) {
  1395. $values = array(
  1396. 'cvterm_id' => $cvterm['cvterm_id'],
  1397. $foreignkey_name => $record_id,
  1398. 'pub_id' => 1,
  1399. );
  1400. // Check if the cvterm is already associated. If so, don't re-add it.
  1401. $result = chado_select_record($linking_table, array('*'), $values);
  1402. if (!$result) {
  1403. $success = chado_insert_record($linking_table, $values);
  1404. if (!$success) {
  1405. tripal_report_error('tripal_api', TRIPAL_WARNING,
  1406. "Failed to insert the %base record %term",
  1407. array('%base' => $linking_table, '%term' => $cvterm['name'])
  1408. );
  1409. return FALSE;
  1410. }
  1411. $result = chado_select_record($linking_table, array('*'), $values);
  1412. }
  1413. if (isset($result[0])) {
  1414. return $result[0];
  1415. }
  1416. else {
  1417. return FALSE;
  1418. }
  1419. }
  1420. return FALSE;
  1421. }
  1422. /**
  1423. * This function sets the default vocabulary for a given table and field.
  1424. *
  1425. * @param $table
  1426. * The name of the table that contains a field with a foreign key
  1427. * relationship to the cvterm table
  1428. * @param $field
  1429. * The table field name that has the foreign key relationship to the
  1430. * cvterm table for which the default vocabulary will be set
  1431. * @param $cv_name
  1432. * The name of the vocabulary
  1433. *
  1434. * @return
  1435. * TRUE if set, FALSE if an error occured
  1436. */
  1437. function tripal_set_default_cv($table, $field, $cv_name, $cv_id = FALSE) {
  1438. // Get the CV object
  1439. if ($cv_id) {
  1440. $cv = tripal_get_cv(array('cv_id' => $cv_id));
  1441. }
  1442. else {
  1443. $cv = tripal_get_cv(array('name' => $cv_name));
  1444. }
  1445. if ($cv) {
  1446. // first delete any entries for this table and field
  1447. $num_deleted = db_delete('tripal_cv_defaults')
  1448. ->condition('table_name', $table)
  1449. ->condition('field_name', $field)
  1450. ->execute();
  1451. // now add the default value
  1452. $cv_default_id = db_insert('tripal_cv_defaults')
  1453. ->fields(array(
  1454. 'table_name' => $table,
  1455. 'field_name' => $field,
  1456. 'cv_id' => $cv->cv_id,
  1457. ))
  1458. ->execute();
  1459. if (!$cv_default_id) {
  1460. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  1461. "Cannot set default vocabulary for %table.%field. Check the error logs.",
  1462. array('%table' => $table, '%field' => $field));
  1463. return FALSE;
  1464. }
  1465. }
  1466. else {
  1467. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  1468. "Cannot set default vocabulary for %table.%field. The vocabulary name, '%cvname', doesn't exist.",
  1469. array('%table' => $table, '%field' => $field, '%cvname' => $cv_name));
  1470. return FALSE;
  1471. }
  1472. }