tripal_chado.cv.api.inc 54 KB

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