tripal_chado.cv.api.inc 52 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580
  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. *
  332. * @param unknown $cv_id
  333. * @param string $job_id
  334. */
  335. function tripal_update_cvtermpath_bak($cv_id, $job_id = NULL){
  336. chado_set_active('chado');
  337. $result = db_query('
  338. SELECT DISTINCT t.*
  339. FROM cvterm t
  340. LEFT JOIN cvterm_relationship r ON (t.cvterm_id = r.subject_id)
  341. INNER JOIN cvterm_relationship r2 ON (t.cvterm_id = r2.object_id)
  342. WHERE t.cv_id = :cvid AND r.subject_id is null',
  343. array(':cvid' => $cv_id)
  344. );
  345. $record = $result->fetchObject();
  346. tripal_update_cvtermpath_root_loop($record->cvterm_id, $record->cv_id);
  347. }
  348. /**
  349. *
  350. * @param unknown $rootid
  351. * @param unknown $cvid
  352. */
  353. function tripal_update_cvtermpath_root_loop($rootid, $cvid){
  354. chado_set_active('chado');
  355. $ttype = db_select('cvterm', 'cv')
  356. ->fields('cv', array('cvterm_id'));
  357. $db_or = db_or();
  358. $db_or->condition('cv.name', "isa", '=' );
  359. $db_or->condition('cv.name', "is_a", '=' );
  360. $ttype->condition($db_or);
  361. $result = $ttype->execute()->fetchObject();
  362. // If the variables are the loop components run passed it.
  363. tripal_update_cvtermpath_loop($rootid, $rootid, $cvid, $result->cvterm_id, 0, 0, array());
  364. $cterm = db_query(
  365. 'SELECT *
  366. FROM cvterm_relationship
  367. WHERE object_id = :rootid
  368. ',
  369. array(':rootid' => $rootid)
  370. );
  371. while($cterm_result = $cterm->fetchAssoc()) {
  372. tripal_update_cvtermpath_root_loop($cterm_result['subject_id'], $cvid);
  373. }
  374. }
  375. /**
  376. *
  377. * @param $origin
  378. * @param $child_id
  379. * @param $cv_id
  380. * @param $type_id
  381. * @param $depth
  382. * @return multitype:
  383. */
  384. function tripal_update_cvtermpath_loop($origin, $child_id, $cv_id, $type_id, $depth, $increment_of_depth, $array_of_children){
  385. // Check to see if a row with these values already exists.
  386. chado_set_active('chado');
  387. $count = db_query(
  388. 'SELECT *
  389. FROM cvtermpath
  390. WHERE cv_id = :cvid
  391. AND object_id = :origin
  392. AND subject_id = :child_id
  393. AND pathdistance = :depth
  394. ',
  395. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':depth' => $depth)
  396. );
  397. $count_total = $count->rowCount();
  398. try{
  399. if($count_total == 0) {
  400. // Build the ID.
  401. $children_id = $origin . '|' . $child_id . '|' . $cv_id . '|' . $type_id;
  402. // Now check if the most recent entry already exists in the array.
  403. if ($increment_of_depth != 0) {
  404. // Search the $array_of_children for the new $child_id in the build_id column.
  405. foreach ($array_of_children as $key => $val) {
  406. if ($val['build_id'] == $children_id) {
  407. // If the search returns something check for a possible loop.
  408. $result_of_loop_checker = tripal_update_cvtermpath_loop_checker($origin, $child_id, $cv_id, $type_id, $depth, $increment_of_depth, 0, $val, [], $depth);
  409. watchdog('debug', '<pre>tripal_update_cvtermpath_loop $result_of_loop_checker: ' . print_r($result_of_loop_checker, TRUE) . '</pre>');
  410. if (!empty($result_of_loop_checker)) {
  411. watchdog('debug', 'Loop found exit the loop function');
  412. break;
  413. }
  414. }
  415. if (!empty($result_of_loop_checker)) {
  416. watchdog('debug', 'Loop 2 found exit the loop function');
  417. return $result_of_loop_checker;
  418. }
  419. }
  420. }
  421. // If row with values does not already exist write to table.
  422. chado_set_active('chado');
  423. $query = db_insert('cvtermpath')
  424. ->fields(array(
  425. 'object_id' => $origin,
  426. 'subject_id' => $child_id,
  427. 'cv_id' => $cv_id,
  428. 'type_id' => $type_id,
  429. 'pathdistance' => $depth,
  430. ));
  431. $rows = $query->execute();
  432. // Then add that new entry to the $array_of_children.
  433. $array_of_children[$increment_of_depth] = [
  434. 'build_id' => $children_id,
  435. 'depth' => $depth
  436. ];
  437. $query = db_select('cvterm_relationship', 'cvtr')
  438. ->fields('cvtr')
  439. ->condition('cvtr.object_id', $child_id, '=')
  440. ->execute();
  441. $cterm = $query->fetchAll();
  442. foreach ($cterm as $item) {
  443. watchdog('debug', 'tripal_update_cvtermpath_loop ');
  444. $increment_of_depth++;
  445. tripal_update_cvtermpath_loop($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1, $increment_of_depth, $array_of_children);
  446. }
  447. }
  448. }
  449. catch(Exception $e){
  450. watchdog_exception('tripal_ds', $e);
  451. return FALSE;
  452. }
  453. }
  454. /**
  455. * @param $origin
  456. * @param $child_id
  457. * @param $cv_id
  458. * @param $type_id
  459. * @param $depth
  460. * @param $increment_of_depth
  461. * @param $distance_between_parent_child
  462. * @param $possible_start_of_loop
  463. * @param $array_of_possible_loop
  464. * @param $depth_at_start_of_loop
  465. *
  466. * @return bool
  467. */
  468. function tripal_update_cvtermpath_loop_checker($origin, $child_id, $cv_id, $type_id, $depth, $increment_of_depth, $distance_between_parent_child, $possible_start_of_loop, $array_of_possible_loop, $depth_at_start_of_loop){
  469. chado_set_active('chado');
  470. $query = db_select('cvterm_relationship', 'cvtr')
  471. ->fields('cvtr')
  472. ->condition('cvtr.object_id', $child_id, '=')
  473. ->execute();
  474. $cterm = $query->fetchAll();
  475. foreach ($cterm as $item){
  476. if ($distance_between_parent_child > 0){
  477. // Search the $array_of_children for the new $child_id in the build_id column.
  478. foreach ($array_of_possible_loop as $key => $val) {
  479. if ($val['build_id'] === $possible_start_of_loop['build_id']) {
  480. // If the search returns something check for a possible loop.
  481. if (!empty($val)) {
  482. $result = tripal_update_cvtermpath_loop_checker_traverse($origin, $child_id, $cv_id, $type_id, $depth, $increment_of_depth, $possible_start_of_loop, $array_of_possible_loop, array(), 0);
  483. watchdog('debug', '<pre>tripal_update_cvtermpath_loop_checker $result: '. print_r($result, TRUE) .'</pre>');
  484. if(!empty($result)){
  485. break 2;
  486. }
  487. }
  488. }
  489. }
  490. }
  491. $increment_of_depth++;
  492. $distance_between_parent_child++;
  493. $children_id = $origin . '|' . $item->subject_id . '|' . $cv_id . '|' . $item->type_id;
  494. $array_of_possible_loop[$distance_between_parent_child] = ['build_id' => $children_id];
  495. 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);
  496. if($result !== FALSE){
  497. return $result;
  498. }
  499. }
  500. if (!empty($result)) {
  501. return $result;
  502. }
  503. else {
  504. return FALSE;
  505. }
  506. }
  507. function tripal_update_cvtermpath_loop_checker_traverse($origin, $child_id, $cv_id, $type_id, $depth, $increment_of_depth, $possible_start_of_loop, $array_of_possible_loop, $traverse_of_loop, $increment) {
  508. if ($increment > 10) {
  509. die();
  510. }
  511. chado_set_active('chado');
  512. $query = db_select('cvterm_relationship', 'cvtr')
  513. ->fields('cvtr')
  514. ->condition('cvtr.object_id', $child_id, '=')
  515. ->execute();
  516. $cterm = $query->fetchAll();
  517. foreach ($cterm as $item) {
  518. if ($array_of_possible_loop === $traverse_of_loop) {
  519. watchdog('debug', '<pre>$array_of_possible_loop: ' . print_r($array_of_possible_loop, TRUE) . '</pre>');
  520. watchdog('debug', '<pre>$traverse_of_loop: ' . print_r($traverse_of_loop, TRUE) . '</pre>');
  521. watchdog('debug', 'LOOP');
  522. //Report the loop.
  523. $loop_found = $item;
  524. break;
  525. }
  526. elseif ($array_of_possible_loop != $traverse_of_loop) {
  527. $increment_of_depth++;
  528. $increment++;
  529. $children_id = $origin . '|' . $item->subject_id . '|' . $cv_id . '|' . $item->type_id;
  530. $traverse_of_loop[$increment] = ['build_id' => $children_id];
  531. $result = tripal_update_cvtermpath_loop_checker_traverse($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1, $increment_of_depth, $possible_start_of_loop, $array_of_possible_loop, $traverse_of_loop, $increment);
  532. if ($result !== FALSE) {
  533. return $result;
  534. }
  535. }
  536. }
  537. if ($loop_found) {
  538. return $loop_found;
  539. }
  540. else {
  541. return FALSE;
  542. }
  543. }
  544. /*
  545. *
  546. * @param $origin
  547. * @param $subject_id
  548. * @param $cv_id
  549. * @param $type_id
  550. * @param $depth
  551. * @return multitype:
  552. function tripal_update_cvtermpath_loop($origin, $child_id, $cv_id, $type_id, $depth){
  553. // Variables and arrays needed for loop checking.
  554. $array_of_children;
  555. $array_of_possible_loop;
  556. $possible_start_of_loop;
  557. $distance_between_parent_child;
  558. $increment_of_depth;
  559. chado_set_active('chado');
  560. $count = db_query(
  561. 'SELECT *
  562. FROM cvtermpath
  563. WHERE cv_id = :cvid
  564. AND object_id = :origin
  565. AND subject_id = :child_id
  566. AND pathdistance = :depth
  567. ',
  568. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':depth' => $depth)
  569. );
  570. $count_total = $count->rowCount();
  571. //Loop check
  572. chado_set_active('chado');
  573. $loop = db_query(
  574. 'SELECT *
  575. FROM cvtermpath
  576. WHERE cv_id = :cvid
  577. AND object_id = :origin
  578. AND subject_id = :child_id
  579. AND type_id = :type_id
  580. ',
  581. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':type_id' => $type_id,)
  582. );
  583. $loop_check = $loop->rowCount();
  584. //watchdog('debug', '<pre>tripal_ds_preprocess_TripalEntity $rows ' . print_r($rows, TRUE) . '</pre>');
  585. /*if(!empty($rows)){
  586. foreach($rows as $row){
  587. tripal_update_cvtermpath_loop_check($origin, $child_id, $cv_id, $type_id, $depth, $row->cvtermpath_id, 0);
  588. }
  589. }
  590. else {*/
  591. //If no loop proceed.
  592. /*try{
  593. if($count_total == 0) {
  594. chado_set_active('chado');
  595. $query = db_insert('cvtermpath')
  596. ->fields(array(
  597. 'object_id' => $origin,
  598. 'subject_id' => $child_id,
  599. 'cv_id' => $cv_id,
  600. 'type_id' => $type_id,
  601. 'pathdistance' => $depth,
  602. ));
  603. $rows = $query->execute();
  604. }
  605. if ($loop_check == 0) {
  606. chado_set_active('chado');
  607. $query = db_select('cvterm_relationship', 'cvtr')
  608. ->fields('cvtr')
  609. ->condition('cvtr.object_id', $child_id, '=')
  610. ->execute();
  611. $cterm = $query->fetchAll();
  612. foreach ($cterm as $item) {
  613. //watchdog('debug', '<pre>tripal_ds_preprocess_TripalEntity $item ' . print_r($item, TRUE) . '</pre>');
  614. tripal_update_cvtermpath_loop($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1);
  615. };
  616. //}
  617. }
  618. }
  619. catch(Exception $e){
  620. watchdog_exception('tripal_ds', $e);
  621. return FALSE;
  622. }
  623. return 1;
  624. }
  625. */
  626. /**
  627. *
  628. * @param $origin
  629. * @param $subject_id
  630. * @param $cv_id
  631. * @param $type_id
  632. * @param $depth
  633. * @return multitype:
  634. function tripal_update_cvtermpath_loop_check($origin, $child_id, $cv_id, $type_id, $depth, $cvtermpath_id, $loop_count, $loop_check, $object_id){
  635. //Store the
  636. //Check if the passed parameters match any of the items in the loop_check array.
  637. if(!empty($loop_check)){
  638. foreach($loop_check as $item){
  639. if ($item['type_id'] = $type_id){
  640. if($item['subject_id'] = $child_id){
  641. if($item['object_id'] = $object_id){
  642. //Loop found, roll back all rows until $cvtermpath_id-1 (last correct entry)
  643. // and step into the next loop
  644. }
  645. }
  646. }
  647. }
  648. }
  649. $loop_count + 1;
  650. chado_set_active('chado');
  651. $count = db_query(
  652. 'SELECT *
  653. FROM cvtermpath
  654. WHERE cv_id = :cvid AND object_id = :origin
  655. AND subject_id = :child_id
  656. AND pathdistance = :depth
  657. ',
  658. array(':cvid' => $cv_id, ':origin' => $origin, ':child_id' => $child_id, ':depth' => $depth)
  659. );
  660. $count_total = $count->rowCount();
  661. if ($count_total == 0) {
  662. chado_set_active('chado');
  663. $query = db_insert('cvtermpath')
  664. ->fields(array(
  665. 'object_id' => $origin,
  666. 'subject_id' => $child_id,
  667. 'cv_id' => $cv_id,
  668. 'type_id' => $type_id,
  669. 'pathdistance' => $depth,
  670. ));
  671. $rows = $query->execute();
  672. $cterm = array();
  673. $query = db_select('cvterm_relationship', 'cvtr')
  674. ->fields('cvtr')
  675. ->condition('cvtr.object_id', $child_id, '=' )
  676. ->execute();
  677. $cterm = $query->fetchAll();
  678. foreach ($cterm as $item) {
  679. $loop_check[$loop_count]= $item;
  680. tripal_update_cvtermpath_loop_check($origin, $item->subject_id, $cv_id, $item->type_id, $depth + 1, $loop_count, $loop_check, $item->object_id);
  681. };
  682. }
  683. return 1;
  684. }
  685. */
  686. /**
  687. * Adds a controlled vocabular to the CV table of Chado.
  688. *
  689. * @param $name
  690. * The name of the controlled vocabulary. These are typically all lower case
  691. * with no special characters other than an undrescore (for spaces).
  692. * @param $comment
  693. * A description or definition of the vocabulary.
  694. *
  695. * @return
  696. * An object populated with fields from the newly added database.
  697. *
  698. * @ingroup tripal_chado_api
  699. */
  700. function tripal_insert_cv($name, $definition) {
  701. // insert/update values
  702. $ins_values = array(
  703. 'name' => $name,
  704. 'definition' => $definition
  705. );
  706. // see if the CV default exists already in the database
  707. $sel_values = array('name' => $name);
  708. $results = chado_select_record('cv', array('*'), $sel_values);
  709. // if it does not exists then add it
  710. if (count($results) == 0) {
  711. $success = chado_insert_record('cv', $ins_values);
  712. if (!$success) {
  713. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to create the CV record", NULL);
  714. return FALSE;
  715. }
  716. $results = chado_select_record('cv', array('*'), $sel_values);
  717. }
  718. // if it already exists then do an update
  719. else {
  720. $success = chado_update_record('cv', $sel_values, $ins_values);
  721. if (!$success) {
  722. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to update the CV record", NULL);
  723. return FALSE;
  724. }
  725. $results = chado_select_record('cv', array('*'), $sel_values);
  726. }
  727. // return the cv object
  728. return $results[0];
  729. }
  730. /**
  731. * Add's a controlled vocabulary term to Chado.
  732. *
  733. * This function will add a cvterm record (and a dbxref record if appropriate
  734. * values are provided). If the parent vocabulary does not exist then
  735. * that also is added to the cv table. If the cvterm is a relationship term
  736. * then the 'is_relationship' value should be set. All
  737. * terms must also have a corresponding database. This is specified in the
  738. * term's ID just before the colon (e.g. GO:003824). If the database does not
  739. * exist in the DB table then it will be added automatically. The accession
  740. * (the value just after the colon in the term's ID) will be added to the
  741. * dbxref table. If the CVterm already exists and $update is set (default)
  742. * then the cvterm is updated. If the CVTerm already exists and $update is
  743. * not set, then no changes are made and the CVTerm object is returned.
  744. *
  745. * @param $term
  746. * An associative array with the following keys:
  747. * - id: the term accession. must be of the form <DB>:<ACCESSION>, where
  748. * <DB> is the name of the database to which the cvterm belongs and the
  749. * <ACCESSION> is the term's accession number in the database.
  750. * - name: the name of the term. usually meant to be human-readable.
  751. * - is_obsolete: is present and set to 1 if the term is defunct
  752. * - definition: the definition of the term
  753. * - cv_name: The CV name to which the term belongs. If this arugment is
  754. * null or not provided then the function tries to find a record in the
  755. * CV table with the same name provided in the $term[namespace]. If
  756. * this field is provided then it overrides what the value in
  757. * $term[namespace]
  758. * - is_relationship: If this term is a relationship term then this value
  759. * should be 1.
  760. * - db_name: In some cases the database name will not be part of the
  761. * $term['id'] and it needs to be explicitly set. Use this argument
  762. * only if the database name cannot be specififed in the term ID
  763. * (e.g. <DB>:<ACCESSION>).
  764. * @param $options
  765. * An associative array with the following keys:
  766. * - update_existing: By default this is TRUE. If the term exists it is
  767. * automatically updated.
  768. * - force_db_change: Sometimes a term may need to switch from one
  769. * database to another. If the term already exists, but associated
  770. * with another term the insert (or update, rather) will fail. Set
  771. * this variable to TRUE to force the change to occur.
  772. *
  773. * @return
  774. * A cvterm object
  775. *
  776. * @ingroup tripal_chado_api
  777. */
  778. function tripal_insert_cvterm($term, $options = array()) {
  779. // get the term properties
  780. $id = (isset($term['id'])) ? $term['id'] : '';
  781. $name = '';
  782. $cvname = '';
  783. $definition = '';
  784. $is_obsolete = 0;
  785. $accession = '';
  786. // Set Defaults
  787. if (isset($term['cv_name'])) {
  788. $cvname = $term['cv_name'];
  789. }
  790. else {
  791. $cvname = 'local';
  792. }
  793. // Namespace is deprecated but must be supported for backwards
  794. // compatability
  795. if (array_key_exists('namespace', $term)) {
  796. $cvname = $term['namespace'];
  797. }
  798. if (isset($term['is_relationship'])) {
  799. $is_relationship = $term['is_relationship'];
  800. }
  801. else {
  802. $is_relationship = 0;
  803. }
  804. if (isset($term['db_name'])) {
  805. $dbname = $term['db_name'];
  806. }
  807. else {
  808. $dbname = 'local';
  809. }
  810. if (isset($options['update_existing'])) {
  811. $update = $options['update_existing'];
  812. }
  813. else {
  814. $update = 1;
  815. }
  816. if (array_key_exists('name', $term)) {
  817. $name = $term['name'];
  818. }
  819. else {
  820. $name = $id;
  821. }
  822. if (array_key_exists('definition', $term)) {
  823. $definition = preg_replace('/^\"(.*)\"/', '\1', $term['definition']);
  824. }
  825. else {
  826. $definition = '';
  827. }
  828. if (array_key_exists('is_obsolete', $term)) {
  829. $is_obsolete = $term['is_obsolete'];
  830. if (strcmp($is_obsolete, 'true') == 0) {
  831. $is_obsolete = 1;
  832. }
  833. }
  834. if (!$name and !$id) {
  835. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Cannot find cvterm without 'id' or 'name'", NULL);
  836. return 0;
  837. }
  838. if (!$id) {
  839. $id = $name;
  840. }
  841. // Get the accession and the database from the cvterm id.
  842. if ($dbname) {
  843. $accession = $id;
  844. }
  845. if (preg_match('/^.+?:.*$/', $id)) {
  846. $accession = preg_replace('/^.+?:(.*)$/', '\1', $id);
  847. $dbname = preg_replace('/^(.+?):.*$/', '\1', $id);
  848. }
  849. // Check that we have a database name, give a different message if it's a
  850. // relationship.
  851. if ($is_relationship and !$dbname) {
  852. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  853. "A database name is not provided for this relationship term: $id", NULL);
  854. return 0;
  855. }
  856. if (!$is_relationship and !$dbname) {
  857. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  858. "A database identifier is missing from the term: $id", NULL);
  859. return 0;
  860. }
  861. // Make sure the CV name exists
  862. $cv = tripal_get_cv(array('name' => $cvname));
  863. if (!$cv) {
  864. $cv = tripal_insert_cv($cvname, '');
  865. }
  866. if (!$cv) {
  867. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  868. "Cannot find namespace '$cvname' when adding/updating $id", NULL);
  869. return 0;
  870. }
  871. // This SQL statement will be used a lot to find a cvterm so just set it
  872. // here for easy reference below. Because CV terms can change their names
  873. // but accessions don't change, the following SQL finds cvterms based on
  874. // their accession rather than the name.
  875. $cvtermsql = "
  876. SELECT CVT.name, CVT.cvterm_id, CV.cv_id, CV.name as cvname,
  877. DB.name as dbname, DB.db_id, DBX.accession
  878. FROM {cvterm} CVT
  879. INNER JOIN {dbxref} DBX on CVT.dbxref_id = DBX.dbxref_id
  880. INNER JOIN {db} DB on DBX.db_id = DB.db_id
  881. INNER JOIN {cv} CV on CV.cv_id = CVT.cv_id
  882. WHERE DBX.accession = :accession and DB.name = :name
  883. ";
  884. // Add the database. The function will just return the DB object if the
  885. // database already exists.
  886. $db = tripal_get_db(array('name' => $dbname));
  887. if (!$db) {
  888. $db = tripal_insert_db(array('name' => $dbname));
  889. }
  890. if (!$db) {
  891. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Cannot find database '$dbname' in Chado.", NULL);
  892. return 0;
  893. }
  894. // The cvterm table has two unique dependencies. We need to check both.
  895. // first check the (name, cv_id, is_obsolete) constraint.
  896. $values = array(
  897. 'name' => $name,
  898. 'is_obsolete' => $is_obsolete,
  899. 'cv_id' => array(
  900. 'name' => $cvname,
  901. ),
  902. );
  903. $result = chado_select_record('cvterm', array('*'), $values);
  904. if (count($result) == 1) {
  905. $cvterm = $result[0];
  906. // Get the dbxref record.
  907. $values = array('dbxref_id' => $cvterm->dbxref_id);
  908. $result = chado_select_record('dbxref', array('*'), $values);
  909. $dbxref = $result[0];
  910. if (!$dbxref) {
  911. tripal_report_error('tripal_cv', TRIPAL_ERROR,
  912. 'Unable to access the dbxref record for the :term cvterm. Term Record: !record',
  913. array(':term' => $name, '!record' => print_r($cvterm, TRUE))
  914. );
  915. return FALSE;
  916. }
  917. // Get the db.
  918. $values = array('db_id' => $dbxref->db_id);
  919. $result = chado_select_record('db', array('*'), $values);
  920. $db_check = $result[0];
  921. // If the database from the existing record doesn't match the one that
  922. // has been provided then we have a problem. The term already exists
  923. // but we don't want to just switch the term, the callee must force it.
  924. if ($db_check->name != $db->name) {
  925. if (array_key_exists('force_db_change', $options) and
  926. $options['force_db_change'] != TRUE) {
  927. tripal_report_error('tripal_cv', TRIPAL_ERROR,
  928. 'The term already exists, but associated with a different database record: \'!db\'. It cannot be added: !record',
  929. array(':term' => $name, '!db' => $db_check->name, '!record' => print_r($cvterm, TRUE))
  930. );
  931. return FALSE;
  932. }
  933. // Look to see if the correct dbxref record already exists for this
  934. // database.
  935. $values = array(
  936. 'db_id' => $db->db_id,
  937. 'accession' => $accession,
  938. );
  939. $result = chado_select_record('dbxref', array('*'), $values);
  940. // If we already have a good dbxref then we want to update our cvterm
  941. // to use this dbxref.
  942. if (count($result) > 0) {
  943. $dbxref = $result[0];
  944. $match = array('cvterm_id' => $cvterm->cvterm_id);
  945. $values = array('dbxref_id' => $dbxref->dbxref_id);
  946. $success = chado_update_record('cvterm', $match, $values);
  947. if (!$success) {
  948. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to correct the dbxref id for the cvterm " .
  949. "'$name' (id: $accession), for database $dbname", NULL);
  950. return 0;
  951. }
  952. }
  953. // If we don't have the dbxref then we want to delete our cvterm and let
  954. // the code below recreate it with the correct info.
  955. else {
  956. $match = array('cvterm_id' => $cvterm->cvterm_id);
  957. chado_delete_record('cvterm', $match);
  958. }
  959. }
  960. // Check that the accession matches. Sometimes an OBO can define a term
  961. // multiple times but with different accessions. If this is the case we
  962. // can't do an insert or it will violate the constraint in the cvterm table.
  963. // So we'll need to add the record to the cvterm_dbxref table instead.
  964. if ($dbxref->accession != $accession) {
  965. // Get/add the dbxref for his term.
  966. $dbxref_new = tripal_insert_dbxref(array(
  967. 'db_id' => $db->db_id,
  968. 'accession' => $accession
  969. ));
  970. if (!$dbxref_new) {
  971. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the dbxref record for cvterm, " .
  972. "$name (id: $accession), for database $dbname", NULL);
  973. return 0;
  974. }
  975. // Check to see if the cvterm_dbxref record already exists.
  976. $values = array(
  977. 'cvterm_id' => $cvterm->cvterm_id,
  978. 'dbxref_id' => $dbxref_new->dbxref_id,
  979. 'is_for_definition' => 1,
  980. );
  981. $result = chado_select_record('cvterm_dbxref', array('*'), $values);
  982. // if the cvterm_dbxref record does not exists then add it
  983. if (count($result)==0) {
  984. $options = array(
  985. 'return_record' => FALSE,
  986. );
  987. $success = chado_insert_record('cvterm_dbxref', $values, $options);
  988. if (!$success) {
  989. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the cvterm_dbxref record for a " .
  990. "duplicated cvterm: $name (id: $accession), for database $dbname", NULL);
  991. return 0;
  992. }
  993. }
  994. // get the original cvterm with the same name and return that.
  995. $result = chado_query($cvtermsql, array(':accession' => $dbxref->accession, ':name' => $dbname));
  996. $cvterm = $result->fetchObject();
  997. return $cvterm;
  998. }
  999. // Continue on, we've fixed the record if the db_id did not match.
  1000. // We can now perform and updated if we need to.
  1001. }
  1002. // get the CVterm record
  1003. $result = chado_query($cvtermsql, array(':accession' => $accession, ':name' => $dbname));
  1004. $cvterm = $result->fetchObject();
  1005. if (!$cvterm) {
  1006. // Check to see if the dbxref exists if not, add it.
  1007. $dbxref = tripal_insert_dbxref(array(
  1008. 'db_id' => $db->db_id,
  1009. 'accession' => $accession
  1010. ));
  1011. if (!$dbxref) {
  1012. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the dbxref record for cvterm, " .
  1013. "$name (id: $accession), for database $dbname", NULL);
  1014. return 0;
  1015. }
  1016. // Check to see if the dbxref already has an entry in the cvterm table.
  1017. $values = array('dbxref_id' => $dbxref->dbxref_id);
  1018. $check = chado_select_record('cvterm', array('cvterm_id'), $values);
  1019. if (count($check) == 0) {
  1020. // now add the cvterm
  1021. $ins_values = array(
  1022. 'cv_id' => $cv->cv_id,
  1023. 'name' => $name,
  1024. 'definition' => $definition,
  1025. 'dbxref_id' => $dbxref->dbxref_id,
  1026. 'is_obsolete' => $is_obsolete,
  1027. 'is_relationshiptype' => $is_relationship,
  1028. );
  1029. $success = chado_insert_record('cvterm', $ins_values);
  1030. if (!$success) {
  1031. if (!$is_relationship) {
  1032. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to insert the term: $name ($dbname)", NULL);
  1033. return 0;
  1034. }
  1035. else {
  1036. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to insert the relationship term: $name (cv: " . $cvname . " db: $dbname)", NULL);
  1037. return 0;
  1038. }
  1039. }
  1040. }
  1041. // This dbxref already exists in the cvterm table.
  1042. else {
  1043. tripal_report_error('tripal_chado', TRIPAL_WARNING, "The dbxref already exists for another cvterm record: $name (cv: " . $cvname . " db: $dbname)", NULL);
  1044. return 0;
  1045. }
  1046. $result = chado_query($cvtermsql, array(':accession' => $accession, ':name' => $dbname));
  1047. $cvterm = $result->fetchObject();
  1048. }
  1049. // Update the cvterm.
  1050. elseif ($update) {
  1051. // First, basic update of the term.
  1052. $match = array('cvterm_id' => $cvterm->cvterm_id);
  1053. $upd_values = array(
  1054. 'name' => $name,
  1055. 'definition' => $definition,
  1056. 'is_obsolete' => $is_obsolete,
  1057. 'is_relationshiptype' => $is_relationship,
  1058. );
  1059. $success = chado_update_record('cvterm', $match, $upd_values);
  1060. if (!$success) {
  1061. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to update the term: $name", NULL);
  1062. return 0;
  1063. }
  1064. // Second, check that the dbxref has not changed and if it has then update it.
  1065. $checksql = "
  1066. SELECT cvterm_id
  1067. FROM {cvterm} CVT
  1068. INNER JOIN {dbxref} DBX on CVT.dbxref_id = DBX.dbxref_id
  1069. INNER JOIN {db} DB on DBX.db_id = DB.db_id
  1070. INNER JOIN {cv} CV on CV.cv_id = CVT.cv_id
  1071. WHERE DBX.accession = :accession and DB.name = :dbname and CVT.name = :term and CV.name = :cvname
  1072. ";
  1073. $check = chado_query($checksql, array(':accession' => $dbxref->accession, ':dbname' => $dbname, ':term' => $name, ':cvname' => $cvname))->fetchObject();
  1074. if (!$check) {
  1075. // check to see if the dbxref exists if not, add it.
  1076. $dbxref = tripal_insert_dbxref(array(
  1077. 'db_id' => $db->db_id,
  1078. 'accession' => $accession
  1079. ));
  1080. if (!$dbxref) {
  1081. tripal_report_error('tripal_chado', TRIPAL_WARNING, "Failed to find or insert the dbxref record for cvterm, " .
  1082. "$name (id: $accession), for database $dbname", NULL);
  1083. return 0;
  1084. }
  1085. $match = array('cvterm_id' => $cvterm->cvterm_id);
  1086. $upd_values = array(
  1087. 'dbxref_id' => $dbxref->dbxref_id,
  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 with new accession $db:$accession", NULL);
  1092. return 0;
  1093. }
  1094. }
  1095. // Finally grab the updated details.
  1096. $result = chado_query($cvtermsql, array(':accession' => $dbxref->accession, ':name' => $dbname));
  1097. $cvterm = $result->fetchObject();
  1098. }
  1099. else {
  1100. // do nothing, we have the cvterm but we don't want to update
  1101. }
  1102. // return the cvterm
  1103. return $cvterm;
  1104. }
  1105. /**
  1106. * TODO: deprecate this function
  1107. *
  1108. * This function allows other modules to programatically
  1109. * submit an ontology for loading into Chado.
  1110. *
  1111. * This function will add a job to the Jobs subsystem for parsing the ontology.
  1112. * You can either pass a known OBO ID to the function or the URL
  1113. * or full path the the ontology file. If a URL or file name is
  1114. * passed then the $obo_name argument must also be provided. If
  1115. * this is the first time the ontology has been provided to Tripal
  1116. * then it will be added to the database and will be assigned a
  1117. * unique OBO ID.
  1118. *
  1119. * @param $obo_id
  1120. * If the ontology is already loaded into the Tripal tables then
  1121. * use this argument to specify the unique ID for the ontology
  1122. * that will be loaded
  1123. * @param $obo_name
  1124. * If the OBO has not been added before then use this argument
  1125. * to specify the human readable name of the ontology.
  1126. * @param $obo_url
  1127. * If the OBO to be loaded is located on a remote server then
  1128. * use this argument to provide the URL.
  1129. * @param $obo_file
  1130. * If the OBO is housed on the local file system of the server then
  1131. * use this argument to specify the full path.
  1132. *
  1133. * @return
  1134. * returns the job_id of the submitted job or FALSE if the job was not added
  1135. *
  1136. * @ingroup tripal_chado_api
  1137. */
  1138. function tripal_submit_obo_job($obo) {
  1139. global $user;
  1140. // Set Defaults
  1141. $obo['obo_id'] = (isset($obo['obo_id'])) ? $obo['obo_id'] : NULL;
  1142. $obo['name'] = (isset($obo['name'])) ? $obo['name'] : NULL;
  1143. $obo['url'] = (isset($obo['url'])) ? $obo['url'] : NULL;
  1144. $obo['file'] = (isset($obo['file'])) ? $obo['file'] : NULL;
  1145. $includes = array(
  1146. module_load_include('inc', 'tripal_chado', 'includes/loaders/tripal_chado.obo_loader'),
  1147. );
  1148. if ($obo['obo_id']) {
  1149. $sql = "SELECT * FROM {tripal_cv_obo} WHERE obo_id = :obo_id";
  1150. $result = db_query($sql, array(':obo_id' => $obo['obo_id']))->fetchObject();
  1151. $args = array($result->obo_id);
  1152. return tripal_add_job("Load OBO " . $result->name, 'tripal_chado',
  1153. "tripal_chado_load_obo_v1_2_id", $args, $user->uid, 10, $includes);
  1154. }
  1155. else {
  1156. if ($obo['url']) {
  1157. $args = array($obo['name'], $obo['url']);
  1158. return tripal_add_job("Load OBO " . $obo['name'], 'tripal_chado',
  1159. "tripal_chado_load_obo_v1_2_url", $args, $user->uid, 10, $includes);
  1160. }
  1161. elseif ($obo['file']) {
  1162. $args = array($obo['name'], $obo['file']);
  1163. return tripal_add_job("Load OBO " . $obo['name'], 'tripal_chado',
  1164. "tripal_chado_load_obo_v1_2_file", $args, $user->uid, 10, $includes);
  1165. }
  1166. }
  1167. return FALSE;
  1168. }
  1169. /**
  1170. * Add the OBO to the tripal_cv_obo table in the Drupal database.
  1171. *
  1172. * If the OBO name already exists in the table then the path is updated.
  1173. *
  1174. * @param $name
  1175. * The human readable name of this ontology
  1176. * @param $path
  1177. * The file path or URL of the ontology
  1178. *
  1179. * @return
  1180. * Returns the ontology ID
  1181. *
  1182. * @ingroup tripal_chado_api
  1183. */
  1184. function tripal_insert_obo($name, $path) {
  1185. // make sure an OBO with the same name doesn't already exist
  1186. $obo_id = db_select('tripal_cv_obo', 'tco')
  1187. ->fields('tco', array('obo_id'))
  1188. ->condition('name', $name)
  1189. ->execute()
  1190. ->fetchField();
  1191. if ($obo_id) {
  1192. db_update('tripal_cv_obo')
  1193. ->fields(array(
  1194. 'path' => $path,
  1195. ))
  1196. ->condition('name', $name)
  1197. ->execute();
  1198. return $obo_id;
  1199. }
  1200. else {
  1201. $obo_id = db_insert('tripal_cv_obo')
  1202. ->fields(array(
  1203. 'name' => $name,
  1204. 'path' => $path,
  1205. ))
  1206. ->execute();
  1207. return $obo_id;
  1208. }
  1209. }
  1210. /**
  1211. * Retrieves an OBO record.
  1212. *
  1213. * @param $values
  1214. * An associate array with the following allowed keys: obo_id, name
  1215. *
  1216. * @return
  1217. * An instance of an OBO record object.
  1218. */
  1219. function tripal_get_obo($values) {
  1220. $query = db_select('tripal_cv_obo', 'tco')
  1221. ->fields('tco');
  1222. if (array_key_exists('name', $values)) {
  1223. $query->condition('tco.name', $values['name']);
  1224. }
  1225. if (array_key_exists('obo_id', $values)) {
  1226. $query->condition('tco.obo_id', $values['obo_id']);
  1227. }
  1228. return $query->execute()->fetchObject();
  1229. }
  1230. /**
  1231. * This function is intended to be used in autocomplete forms
  1232. * for searching for CV terms that begin with the provided string
  1233. *
  1234. * @param $cv_id
  1235. * The CV ID in which to search for the term
  1236. * @param $string
  1237. * The string to search for
  1238. *
  1239. * @return
  1240. * A json array of terms that begin with the provided string
  1241. *
  1242. * @ingroup tripal_chado_api
  1243. */
  1244. function tripal_autocomplete_cvterm($cv_id, $string = '') {
  1245. if ($cv_id) {
  1246. $sql = "
  1247. SELECT CVT.cvterm_id, CVT.name
  1248. FROM {cvterm} CVT
  1249. WHERE CVT.cv_id = :cv_id and lower(CVT.name) like lower(:name)
  1250. UNION
  1251. SELECT CVT2.cvterm_id, CVTS.synonym as name
  1252. FROM {cvterm} CVT2
  1253. INNER JOIN {cvtermsynonym} CVTS ON CVTS.cvterm_id = CVT2.cvterm_id
  1254. WHERE CVT2.cv_id = :cv_id and lower(CVTS.synonym) like lower(:name)
  1255. ORDER by name
  1256. LIMIT 25 OFFSET 0
  1257. ";
  1258. $results = chado_query($sql, array(':cv_id' => $cv_id, ':name' => $string . '%'));
  1259. $items = array();
  1260. foreach ($results as $term) {
  1261. $items[$term->name] = $term->name;
  1262. }
  1263. }
  1264. // If a CV wasn't provided then search all of them, and include the cv
  1265. // in the results.
  1266. else {
  1267. $sql = "
  1268. SELECT CVT.cvterm_id, CVT.name, CV.name as cvname, CVT.cv_id
  1269. FROM {cvterm} CVT
  1270. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  1271. WHERE lower(CVT.name) like lower(:name)
  1272. UNION
  1273. SELECT CVT2.cvterm_id, CVTS.synonym as name, CV2.name as cvname, CVT2.cv_id
  1274. FROM {cvterm} CVT2
  1275. INNER JOIN {cv} CV2 on CVT2.cv_id = CV2.cv_id
  1276. INNER JOIN {cvtermsynonym} CVTS ON CVTS.cvterm_id = CVT2.cvterm_id
  1277. WHERE lower(CVTS.synonym) like lower(:name)
  1278. ORDER by name
  1279. LIMIT 25 OFFSET 0
  1280. ";
  1281. $results = chado_query($sql, array(':name' => $string . '%'));
  1282. $items = array();
  1283. foreach ($results as $term) {
  1284. $items[$term->name] = $term->name;
  1285. }
  1286. }
  1287. drupal_json_output($items);
  1288. }
  1289. /**
  1290. * Add a record to a cvterm linking table (ie: feature_cvterm)
  1291. *
  1292. * @param $basetable
  1293. * The base table to which the cvterm should be linked/associated. Thus to associate a
  1294. * cvterm to a feature the basetable=feature and cvterm_id is added to the feature_cvterm table.
  1295. * @param $record_id
  1296. * The primary key of the basetable to associate the cvterm with. This should be in integer.
  1297. * @param $cvterm
  1298. * An associative array describing the cvterm. Valid keys include:
  1299. * - name: the name for the cvterm,
  1300. * - cv_name: the name of the cv the cvterm belongs to.
  1301. * - cv_id: the primary key of the cv the cvterm belongs to.
  1302. * @param $options
  1303. * An associative array of options. Valid keys include:
  1304. * - insert_cvterm: Insert the cvterm if it doesn't already exist. FALSE is the default
  1305. *
  1306. * @ingroup tripal_chado_api
  1307. */
  1308. function tripal_associate_cvterm($basetable, $record_id, $cvterm, $options = array()) {
  1309. $linking_table = $basetable . '_cvterm';
  1310. $foreignkey_name = $basetable . '_id';
  1311. // Default Values
  1312. $options['insert_cvterm'] = (isset($options['insert_cvterm'])) ? $options['insert_cvterm'] : FALSE;
  1313. // If the cvterm_id is not set then find the cvterm record using the name and cv_id
  1314. if (!isset($cvterm['cvterm_id'])) {
  1315. $values = array(
  1316. 'name' => $cvterm['name'],
  1317. );
  1318. if (isset($cvterm['cv_id'])) {
  1319. $values['cv_id'] = $cvterm['cv_id'];
  1320. }
  1321. elseif (isset($cvterm['cv_name'])) {
  1322. $values['cv_id'] = array(
  1323. 'name' => $cvterm['cv_name']
  1324. );
  1325. }
  1326. else {
  1327. tripal_report_error('tripal_chado_api', TRIPAL_WARNING,
  1328. "tripal_associate_cvterm: The cvterm needs to have either the cv_name or cv_id
  1329. supplied. You were trying to associate a cvterm with the %base %record_id
  1330. and supplied the cvterm values: %cvterm.",
  1331. array('%base' => $basetable, '%record_id' => $record_id, '%cvterm' => print_r($cvterm,TRUE))
  1332. );
  1333. return FALSE;
  1334. }
  1335. // Get the cvterm. If it doesn't exist then add it if the option
  1336. // 'insert_cvterm' is set.
  1337. $select = chado_select_record('cvterm', array('*'), $values);
  1338. if ($select) {
  1339. $cvterm['cvterm_id'] = $select[0]->cvterm_id;
  1340. }
  1341. elseif ($options['insert_cvterm']) {
  1342. // Insert the cvterm
  1343. $insert = tripal_insert_cvterm($values);
  1344. if (isset($insert->cvterm_id)) {
  1345. $cvterm['cvterm_id'] = $insert->cvterm_id;
  1346. }
  1347. else {
  1348. tripal_report_error('tripal_chado_api', TRIPAL_WARNING,
  1349. "tripal_associate_cvterm: Unable to insert the cvterm using the cvterm values: %cvterm.",
  1350. array('%cvterm' => print_r($cvterm,TRUE))
  1351. );
  1352. return FALSE;
  1353. }
  1354. }
  1355. else {
  1356. tripal_report_error('tripal_api', TRIPAL_WARNING,
  1357. "tripal_associate_cvterm: The cvterm doesn't already exist. You supplied the cvterm values: %cvterm.",
  1358. array('%cvterm' => print_r($cvterm,TRUE))
  1359. );
  1360. return FALSE;
  1361. }
  1362. }
  1363. // Now add the link between the record & cvterm
  1364. if ($cvterm['cvterm_id'] > 0) {
  1365. $values = array(
  1366. 'cvterm_id' => $cvterm['cvterm_id'],
  1367. $foreignkey_name => $record_id,
  1368. 'pub_id' => 1,
  1369. );
  1370. // Check if the cvterm is already associated. If so, don't re-add it.
  1371. $result = chado_select_record($linking_table, array('*'), $values);
  1372. if (!$result) {
  1373. $success = chado_insert_record($linking_table, $values);
  1374. if (!$success) {
  1375. tripal_report_error('tripal_api', TRIPAL_WARNING,
  1376. "Failed to insert the %base record %term",
  1377. array('%base' => $linking_table, '%term' => $cvterm['name'])
  1378. );
  1379. return FALSE;
  1380. }
  1381. $result = chado_select_record($linking_table, array('*'), $values);
  1382. }
  1383. if (isset($result[0])) {
  1384. return $result[0];
  1385. }
  1386. else {
  1387. return FALSE;
  1388. }
  1389. }
  1390. return FALSE;
  1391. }
  1392. /**
  1393. * This function sets the default vocabulary for a given table and field.
  1394. *
  1395. * @param $table
  1396. * The name of the table that contains a field with a foreign key
  1397. * relationship to the cvterm table
  1398. * @param $field
  1399. * The table field name that has the foreign key relationship to the
  1400. * cvterm table for which the default vocabulary will be set
  1401. * @param $cv_name
  1402. * The name of the vocabulary
  1403. *
  1404. * @return
  1405. * TRUE if set, FALSE if an error occured
  1406. */
  1407. function tripal_set_default_cv($table, $field, $cv_name, $cv_id = FALSE) {
  1408. // Get the CV object
  1409. if ($cv_id) {
  1410. $cv = tripal_get_cv(array('cv_id' => $cv_id));
  1411. }
  1412. else {
  1413. $cv = tripal_get_cv(array('name' => $cv_name));
  1414. }
  1415. if ($cv) {
  1416. // first delete any entries for this table and field
  1417. $num_deleted = db_delete('tripal_cv_defaults')
  1418. ->condition('table_name', $table)
  1419. ->condition('field_name', $field)
  1420. ->execute();
  1421. // now add the default value
  1422. $cv_default_id = db_insert('tripal_cv_defaults')
  1423. ->fields(array(
  1424. 'table_name' => $table,
  1425. 'field_name' => $field,
  1426. 'cv_id' => $cv->cv_id,
  1427. ))
  1428. ->execute();
  1429. if (!$cv_default_id) {
  1430. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  1431. "Cannot set default vocabulary for %table.%field. Check the error logs.",
  1432. array('%table' => $table, '%field' => $field));
  1433. return FALSE;
  1434. }
  1435. }
  1436. else {
  1437. tripal_report_error('tripal_chado', TRIPAL_WARNING,
  1438. "Cannot set default vocabulary for %table.%field. The vocabulary name, '%cvname', doesn't exist.",
  1439. array('%table' => $table, '%field' => $field, '%cvname' => $cv_name));
  1440. return FALSE;
  1441. }
  1442. }