tripal_feature.chado_node.inc 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090
  1. <?php
  2. /**
  3. * @file
  4. * Implementation of hooks to create a feature content type
  5. */
  6. /**
  7. * Implements hook_node_info().
  8. *
  9. * Provide information to drupal about the node types that we're creating
  10. * in this module
  11. *
  12. * @ingroup tripal_feature
  13. */
  14. function tripal_feature_node_info() {
  15. $nodes = array();
  16. $nodes['chado_feature'] = array(
  17. 'name' => t('Feature'),
  18. 'base' => 'chado_feature',
  19. 'description' => t('A feature from the chado database'),
  20. 'has_title' => TRUE,
  21. 'locked' => TRUE,
  22. 'chado_node_api' => array(
  23. 'base_table' => 'feature',
  24. 'hook_prefix' => 'chado_feature',
  25. 'record_type_title' => array(
  26. 'singular' => t('Feature'),
  27. 'plural' => t('Features')
  28. ),
  29. 'sync_filters' => array(
  30. 'type_id' => TRUE,
  31. 'organism_id' => TRUE
  32. ),
  33. )
  34. );
  35. return $nodes;
  36. }
  37. /**
  38. * Implementation of hook_form().
  39. *
  40. * @ingroup tripal_feature
  41. */
  42. function chado_feature_form($node, &$form_state) {
  43. $form = array();
  44. // Default values can come in the following ways:
  45. //
  46. // 1) as elements of the $node object. This occurs when editing an existing feature
  47. // 2) in the $form_state['values'] array which occurs on a failed validation or
  48. // ajax callbacks from non submit form elements
  49. // 3) in the $form_state['input'[ array which occurs on ajax callbacks from submit
  50. // form elements and the form is being rebuilt
  51. //
  52. // set form field defaults
  53. $feature = null;
  54. $feature_id = null;
  55. $uniquename = '';
  56. $fname = '';
  57. $feature_type = '';
  58. $organism_id = '';
  59. $residues = '';
  60. $is_obsolete = '';
  61. $analyses = '';
  62. $references = '';
  63. $synonyms = '';
  64. // if we are editing an existing node then the feature is already part of the node
  65. if (property_exists($node, 'feature')) {
  66. $feature = $node->feature;
  67. $feature = chado_expand_var($feature, 'field', 'feature.residues');
  68. $feature_id = $feature->feature_id;
  69. $uniquename = $feature->uniquename;
  70. $fname = $feature->name;
  71. $feature_type = $feature->type_id->name;
  72. $organism_id = $feature->organism_id->organism_id;
  73. $residues = $feature->residues;
  74. $is_obsolete = $feature->is_obsolete;
  75. // get the synonyms from a previous post
  76. $synonyms = '';
  77. if(property_exists($node, 'synonyms')) {
  78. $synonyms = $node->synonyms;
  79. }
  80. // get synonyms from the database if we don't already have them
  81. if (!$synonyms) {
  82. $options = array('return_array' => 1);
  83. $feature = chado_expand_var($feature, 'table', 'feature_synonym', $options);
  84. $feature_synonyms = (isset($feature->feature_synonym)) ? $feature->feature_synonym : array();
  85. foreach ($feature_synonyms as $index => $synonym) {
  86. $synonyms .= $synonym->synonym_id->name . "\n";
  87. }
  88. }
  89. // keep track of the feature id
  90. $form['feature_id'] = array(
  91. '#type' => 'value',
  92. '#value' => $feature_id,
  93. );
  94. }
  95. // if we are re constructing the form from a failed validation or ajax callback
  96. // then use the $form_state['values'] values
  97. if (array_key_exists('values', $form_state) and isset($form_state['values']['uniquename'])) {
  98. $uniquename = $form_state['values']['uniquename'];
  99. $fname = $form_state['values']['fname'];
  100. $feature_type = $form_state['values']['feature_type'];
  101. $organism_id = $form_state['values']['organism_id'];
  102. $residues = $form_state['values']['residues'];
  103. $is_obsolete = $form_state['values']['is_obsolete'];
  104. $synonyms = $form_state['values']['synonyms'];
  105. }
  106. // if we are re building the form from after submission (from ajax call) then
  107. // the values are in the $form_state['input'] array
  108. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  109. $uniquename = $form_state['input']['uniquename'];
  110. $fname = $form_state['input']['fname'];
  111. $feature_type = $form_state['input']['feature_type'];
  112. $organism_id = $form_state['input']['organism_id'];
  113. $residues = $form_state['input']['residues'];
  114. $is_obsolete = array_key_exists('is_obsolete', $form_state['input']) ? $form_state['input']['is_obsolete'] : FALSE;
  115. $synonyms = $form_state['input']['synonyms'];
  116. }
  117. $form['fname']= array(
  118. '#type' => 'textfield',
  119. '#title' => t('Feature Name'),
  120. '#required' => TRUE,
  121. '#default_value' => $fname,
  122. '#description' => t('Enter the name used by humans to refer to this feature.'),
  123. '#maxlength' => 255
  124. );
  125. $form['uniquename']= array(
  126. '#type' => 'textfield',
  127. '#title' => t('Unique Feature Name'),
  128. '#required' => TRUE,
  129. '#default_value' => $uniquename,
  130. '#description' => t('Enter a unique name for this feature. This name must be unique for the organism and feature type.'),
  131. '#maxlength' => 255
  132. );
  133. $type_options = tripal_get_cvterm_default_select_options('feature', 'type_id', 'feature types');
  134. $type_options[0] = 'Select a Type';
  135. $type_cv = tripal_get_default_cv('feature', 'type_id');
  136. $cv_id = $type_cv->cv_id;
  137. $form['feature_type'] = array(
  138. '#title' => t('Feature Type'),
  139. '#type' => 'textfield',
  140. '#description' => t("Choose the feature type."),
  141. '#required' => TRUE,
  142. '#default_value' => $feature_type,
  143. '#autocomplete_path' => "admin/tripal/chado/tripal_cv/cvterm/auto_name/$cv_id",
  144. );
  145. // get the list of organisms
  146. $sql = "SELECT * FROM {Organism} ORDER BY genus, species";
  147. $org_rset = chado_query($sql);
  148. $organisms = array();
  149. $organisms[''] = '';
  150. while ($organism = $org_rset->fetchObject()) {
  151. $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
  152. }
  153. $form['organism_id'] = array(
  154. '#title' => t('Organism'),
  155. '#type' => t('select'),
  156. '#description' => t("Choose the organism with which this feature is associated"),
  157. '#required' => TRUE,
  158. '#default_value' => $organism_id,
  159. '#options' => $organisms,
  160. );
  161. // Get synonyms
  162. $syn_text = '';
  163. if ($synonyms) {
  164. if (is_array($synonyms)) {
  165. foreach ($synonyms as $synonym) {
  166. $syn_text .= "$synonym->name\n";
  167. }
  168. }
  169. else {
  170. $syn_text = $synonyms;
  171. }
  172. }
  173. $form['synonyms']= array(
  174. '#type' => 'textarea',
  175. '#title' => t('Synonyms'),
  176. '#required' => FALSE,
  177. '#default_value' => $syn_text,
  178. '#description' => t('Enter alternate names (synonmys) for this feature to help in searching and identification. You may enter as many alternate names as needed each on different lines.'),
  179. );
  180. $form['residues']= array(
  181. '#type' => 'textarea',
  182. '#title' => t('Residues'),
  183. '#required' => FALSE,
  184. '#default_value' => $residues,
  185. '#description' => t('Enter the nucelotide sequences for this feature'),
  186. );
  187. $checked = '';
  188. if ($is_obsolete == 't') {
  189. $checked = '1';
  190. }
  191. $form['is_obsolete']= array(
  192. '#type' => 'checkbox',
  193. '#title' => t('Is Obsolete'),
  194. '#required' => FALSE,
  195. '#default_value' => $checked,
  196. '#description' => t('Check this box if this sequence should be retired'),
  197. );
  198. // PROPERTIES FORM
  199. //---------------------------------------------
  200. $prop_cv = tripal_get_default_cv('featureprop', 'type_id');
  201. $cv_id = $prop_cv ? $prop_cv->cv_id : NULL;
  202. $details = array(
  203. 'property_table' => 'featureprop', // the name of the prop table
  204. 'chado_id' => $feature_id, // the value of feature_id for this record
  205. 'cv_id' => $cv_id // the cv.cv_id of the cv governing featureprop.type_id
  206. );
  207. chado_add_node_form_properties($form, $form_state, $details);
  208. // ADDITIONAL DBXREFS FORM
  209. //---------------------------------------------
  210. $details = array(
  211. 'linking_table' => 'feature_dbxref', // the name of the _dbxref table
  212. 'base_foreign_key' => 'feature_id', // the name of the key in your base chado table
  213. 'base_key_value' => $feature_id // the value of feature_id for this record
  214. );
  215. chado_add_node_form_dbxrefs($form, $form_state, $details);
  216. // TODO: For some reason adding a relationship to the form breaks AJAX
  217. // for features (works for other node type)... need to debug
  218. // RELATIONSHIPS FORM
  219. //---------------------------------------------
  220. $relationship_cv = tripal_get_default_cv('feature_relationship', 'type_id');
  221. $cv_id = $relationship_cv ? $relationship_cv->cv_id : NULL;
  222. $details = array(
  223. 'relationship_table' => 'feature_relationship',
  224. 'base_table' => 'feature',
  225. 'base_foreign_key' => 'feature_id',
  226. 'base_key_value' => $feature_id,
  227. 'nodetype' => 'feature',
  228. 'cv_id' => $cv_id
  229. );
  230. chado_add_node_form_relationships($form, $form_state, $details);
  231. return $form;
  232. }
  233. /**
  234. * Implementation of hook_validate().
  235. *
  236. * This validation is being used for three activities:
  237. * CASE A: Update a node that exists in both drupal and chado
  238. * CASE B: Synchronizing a node from chado to drupal
  239. * CASE C: Inserting a new node that exists in niether drupal nor chado
  240. *
  241. * @ingroup tripal_feature
  242. */
  243. function chado_feature_validate($node, $form, &$form_state) {
  244. // if this is a delete then don't validate
  245. if($node->op == 'Delete') {
  246. return;
  247. }
  248. // we are syncing if we do not have a node ID but we do have a feature_id. We don't
  249. // need to validate during syncing so just skip it.
  250. if (is_null($node->nid) and property_exists($node, 'feature_id') and $node->feature_id != 0) {
  251. return;
  252. }
  253. // remove surrounding white-space on submitted values
  254. $node->uniquename = trim($node->uniquename);
  255. $node->fname = trim($node->fname);
  256. $node->feature_type = trim($node->feature_type);
  257. $node->residues = trim($node->residues);
  258. // Validating for an update
  259. if (property_exists($node, 'nid')) {
  260. // make sure the feature type is a real sequence ontology term
  261. $type = tripal_cv_get_cvterm_by_name($node->feature_type, NULL, 'sequence');
  262. if (!$type) {
  263. form_set_error('feature_type', t("The feature type is not a valid name from the Sequence Ontology."));
  264. }
  265. // if this is an update, we want to make sure that a different feature for
  266. // the organism doesn't already have this uniquename. We don't want to give
  267. // two sequences the same uniquename
  268. if (property_exists($node, 'feature_id') and $node->feature_id != 0) {
  269. $sql = "
  270. SELECT *
  271. FROM {feature} F
  272. INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  273. WHERE
  274. F.uniquename = :uname AND
  275. F.organism_id = :organism_id AND
  276. CVT.name = :cvtname AND
  277. NOT f.feature_id = :feature_id
  278. ";
  279. $args = array(':uname' => $node->uniquename, ':organism_id' => $node->organism_id,
  280. ':cvtname' => $node->feature_type, ':feature_id' => $node->feature_id);
  281. $result = chado_query($sql, $args)->fetchObject();
  282. if ($result) {
  283. form_set_error('uniquename', t("Feature update cannot proceed. The feature name '$node->uniquename' is not unique for this organism. Please provide a unique name for this feature."));
  284. }
  285. }
  286. }
  287. // Validating for an insert
  288. else {
  289. // make sure the feature type is a real sequence ontology term
  290. $type = tripal_cv_get_cvterm_by_name($node->feature_type, NULL, 'sequence');
  291. if (!$type) {
  292. form_set_error('feature_type', t("The feature type is not a valid name from the Sequence Ontology."));
  293. }
  294. // if this is an insert then we just need to make sure this name doesn't
  295. // already exist for this organism if it does then we need to throw an error
  296. $sql = "
  297. SELECT *
  298. FROM {feature} F
  299. INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  300. WHERE
  301. F.uniquename = :name AND
  302. F.organism_id = :organism_id AND
  303. CVT.name = :cvtname
  304. ";
  305. $args = array(':name' => $node->uniquename, ':organism_id' => $node->organism_id, ':cvtname' => $node->feature_type);
  306. $result = chado_query($sql, $args)->fetchObject();
  307. if ($result) {
  308. form_set_error('uniquename', t("Feature insert cannot proceed. The feature name '$node->uniquename' already exists for this organism. Please provide a unique name for this feature."));
  309. }
  310. }
  311. }
  312. /**
  313. * Implement hook_node_access().
  314. *
  315. * This hook allows node modules to limit access to the node types they define.
  316. *
  317. * @param $node
  318. * The node on which the operation is to be performed, or, if it does not yet exist, the
  319. * type of node to be created
  320. *
  321. * @param $op
  322. * The operation to be performed
  323. *
  324. * @param $account
  325. * A user object representing the user for whom the operation is to be performed
  326. *
  327. * @return
  328. * If the permission for the specified operation is not set then return FALSE. If the
  329. * permission is set then return NULL as this allows other modules to disable
  330. * access. The only exception is when the $op == 'create'. We will always
  331. * return TRUE if the permission is set.
  332. *
  333. * @ingroup tripal_feature
  334. */
  335. function chado_feature_node_access($node, $op, $account) {
  336. $node_type = $node;
  337. if (is_object($node)) {
  338. $node_type = $node->type;
  339. }
  340. if($node_type == 'chado_feature') {
  341. if ($op == 'create') {
  342. if (!user_access('create chado_feature content', $account)) {
  343. return NODE_ACCESS_DENY;
  344. }
  345. return NODE_ACCESS_ALLOW;
  346. }
  347. if ($op == 'update') {
  348. if (!user_access('edit chado_feature content', $account)) {
  349. return NODE_ACCESS_DENY;
  350. }
  351. }
  352. if ($op == 'delete') {
  353. if (!user_access('delete chado_feature content', $account)) {
  354. return NODE_ACCESS_DENY;
  355. }
  356. }
  357. if ($op == 'view') {
  358. if (!user_access('access chado_feature content', $account)) {
  359. return NODE_ACCESS_DENY;
  360. }
  361. }
  362. }
  363. return NODE_ACCESS_IGNORE;
  364. }
  365. /**
  366. * Implements hook_insert().
  367. *
  368. * When a new chado_feature node is created we also need to add information
  369. * to our chado_feature table. This function is called on insert of a new node
  370. * of type 'chado_feature' and inserts the necessary information.
  371. *
  372. * @ingroup tripal_feature
  373. */
  374. function chado_feature_insert($node) {
  375. $node->uniquename = trim($node->uniquename);
  376. $node->fname = trim($node->fname);
  377. $node->feature_type = trim($node->feature_type);
  378. $node->residues = trim($node->residues);
  379. // remove spaces, newlines from residues
  380. $residues = preg_replace("/[\n\r\s]/", "", $node->residues);
  381. $obsolete = 'FALSE';
  382. if ($node->is_obsolete) {
  383. $obsolete = 'TRUE';
  384. }
  385. // get the feature type id
  386. $values = array(
  387. 'cv_id' => array(
  388. 'name' => 'sequence'
  389. ),
  390. 'name' => $node->feature_type
  391. );
  392. $type = chado_select_record('cvterm', array('cvterm_id'), $values);
  393. $feature_id = '';
  394. // if there is a feature_id in the $node object then this must be a sync so
  395. // we can skip adding the feature as it is already there, although
  396. // we do need to proceed with the rest of the insert
  397. if (!property_exists($node, 'feature_id')) {
  398. $values = array(
  399. 'organism_id' => $node->organism_id,
  400. 'name' => $node->fname,
  401. 'uniquename' => $node->uniquename,
  402. 'residues' => $residues,
  403. 'seqlen' => drupal_strlen($residues),
  404. 'is_obsolete' => $obsolete,
  405. 'type_id' => $type[0]->cvterm_id,
  406. 'md5checksum' => md5($residues)
  407. );
  408. $feature = chado_insert_record('feature', $values);
  409. if (!$feature) {
  410. drupal_set_message(t('Unable to add feature.'), 'warning');
  411. tripal_report_error('tripal_feature', TRIPAL_WARNING, 'Insert feature: Unable to create feature where values: %values',
  412. array('%values' => print_r($values, TRUE)));
  413. return;
  414. }
  415. $feature_id = $feature['feature_id'];
  416. // add the genbank accession and synonyms
  417. chado_feature_add_synonyms($node->synonyms, $feature_id);
  418. // * Properties Form *
  419. $details = array(
  420. 'property_table' => 'featureprop', // the name of the prop table
  421. 'base_table' => 'feature', // the name of your chado base table
  422. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  423. 'foreignkey_value' => $feature_id // the value of the feature_id key
  424. );
  425. chado_update_node_form_properties($node, $details);
  426. // * Additional DBxrefs Form *
  427. $details = array(
  428. 'linking_table' => 'feature_dbxref', // the name of your _dbxref table
  429. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  430. 'foreignkey_value' => $feature_id // the value of the feature_id key
  431. );
  432. chado_update_node_form_dbxrefs($node, $details);
  433. }
  434. else {
  435. $feature_id = $node->feature_id;
  436. }
  437. // Make sure the entry for this feature doesn't already exist in the
  438. // chado_feature table if it doesn't exist then we want to add it.
  439. $check_org_id = chado_get_id_from_nid('feature', $node->nid);
  440. if (!$check_org_id) {
  441. $record = new stdClass();
  442. $record->nid = $node->nid;
  443. $record->vid = $node->vid;
  444. $record->feature_id = $feature_id;
  445. drupal_write_record('chado_feature', $record);
  446. }
  447. }
  448. /**
  449. * Implements hook_update().
  450. *
  451. * @ingroup tripal_feature
  452. */
  453. function chado_feature_update($node) {
  454. $node->uniquename = trim($node->uniquename);
  455. $node->fname = trim($node->fname);
  456. $node->feature_type = trim($node->feature_type);
  457. $node->residues = trim($node->residues);
  458. $residues = preg_replace("/[\n\r\s]/", "", $node->residues);
  459. $obsolete = 'FALSE';
  460. if ($node->is_obsolete) {
  461. $obsolete = 'TRUE';
  462. }
  463. // get the feature type id
  464. $values = array(
  465. 'cv_id' => array(
  466. 'name' => 'sequence'
  467. ),
  468. 'name' => $node->feature_type
  469. );
  470. $type = chado_select_record('cvterm', array('cvterm_id'), $values);
  471. $feature_id = chado_get_id_from_nid('feature', $node->nid) ;
  472. if (sizeof($type) > 0) {
  473. $match = array(
  474. 'feature_id' => $feature_id,
  475. );
  476. $values = array(
  477. 'organism_id' => $node->organism_id,
  478. 'name' => $node->fname,
  479. 'uniquename' => $node->uniquename,
  480. 'residues' => $residues,
  481. 'seqlen' => drupal_strlen($residues),
  482. 'is_obsolete' => $obsolete,
  483. 'type_id' => $type[0]->cvterm_id,
  484. 'md5checksum' => md5($residues)
  485. );
  486. $options = array('return_record' => TRUE);
  487. $status = chado_update_record('feature', $match, $values, $options);
  488. // add the genbank synonyms
  489. chado_feature_add_synonyms($node->synonyms, $feature_id);
  490. // * Properties Form *
  491. $details = array(
  492. 'property_table' => 'featureprop', // the name of the prop table
  493. 'base_table' => 'feature', // the name of your chado base table
  494. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  495. 'foreignkey_value' => $feature_id // the value of the feature_id key
  496. );
  497. chado_update_node_form_properties($node, $details);
  498. // * Additional DBxrefs Form *
  499. $details = array(
  500. 'linking_table' => 'feature_dbxref', // the name of your _dbxref table
  501. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  502. 'foreignkey_value' => $feature_id // the value of the feature_id key
  503. );
  504. chado_update_node_form_dbxrefs($node, $details);
  505. }
  506. else {
  507. drupal_set_message(t('Unable to update feature.'), 'warning');
  508. tripal_report_error('tripal_feature', TRIPAL_WARNING,
  509. 'Update feature: Unable to update feature where values: %values',
  510. array('%values' => print_r($values, TRUE))
  511. );
  512. }
  513. }
  514. /**
  515. * Implements hook_delete().
  516. *
  517. * @ingroup tripal_feature
  518. */
  519. function chado_feature_delete($node) {
  520. $feature_id = chado_get_id_from_nid('feature', $node->nid);
  521. // if we don't have a library id for this node then this isn't a node of
  522. // type chado_library or the entry in the chado_library table was lost.
  523. if (!$feature_id) {
  524. return;
  525. }
  526. // remove the drupal content
  527. $sql_del = "DELETE FROM {chado_feature} WHERE nid = :nid AND vid = :vid";
  528. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  529. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  530. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  531. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  532. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  533. // Remove data from feature tables of chado database. This will
  534. // cause a cascade delete and remove all data in referencing tables
  535. // for this feature. However, we need t specifically delete from the
  536. // featureloc table because the box() PLSQL function calls another
  537. // function that does not reference the 'chado' schema and causes an error
  538. // the chado_query function can handle this problem so we specificall delete
  539. // from that table to prevent the error. The same problem exists for the
  540. // frange.featuregroup table
  541. $previous_db = chado_set_active('chado') ;
  542. db_query("DELETE FROM frange.featuregroup WHERE subject_id = :feature_id", array(':feature_id' => $feature_id));
  543. db_query("DELETE FROM frange.featuregroup WHERE object_id = :feature_id", array(':feature_id' => $feature_id));
  544. db_query("DELETE FROM frange.featuregroup WHERE group_id = :feature_id", array(':feature_id' => $feature_id));
  545. db_query("DELETE FROM frange.featuregroup WHERE srcfeature_id = :feature_id", array(':feature_id' => $feature_id));
  546. chado_set_active($previous_db);
  547. chado_query("DELETE FROM {featureloc} WHERE feature_id = :feature_id", array(':feature_id' => $feature_id));
  548. chado_query("DELETE FROM {featureloc} WHERE srcfeature_id = :feature_id", array(':feature_id' => $feature_id));
  549. chado_query("DELETE FROM {feature} WHERE feature_id = :feature_id", array(':feature_id' => $feature_id));
  550. drupal_set_message(t("The feature and all associated data were removed"));
  551. }
  552. /**
  553. * Add synonyms to a feature
  554. *
  555. * @param $synonyms
  556. * A string containing synonyms separated by a return character
  557. * @param $feature_id
  558. * The feature to attach the synonyms to
  559. *
  560. * @ingroup tripal_feature
  561. */
  562. function chado_feature_add_synonyms($synonyms, $feature_id) {
  563. // separate synomys by carriage returns
  564. $synonyms = preg_replace("/[\n\r]+/", " ", $synonyms);
  565. // split the synonyms into an array based on a space as the delimieter
  566. $syn_array = array();
  567. $syn_array = explode(" ", $synonyms);
  568. // remove any old synonyms
  569. $feature_syn_dsql = "DELETE FROM {feature_synonym} WHERE feature_id = :feature_id";
  570. if (!chado_query($feature_syn_dsql, array(':feature_id' => $feature_id))) {
  571. tripal_report_error('tripal_feature', TRIPAL_ERROR, "Could not remove synonyms from feature. ", array());
  572. return;
  573. }
  574. // return if we don't have any synonmys to add
  575. if (!$synonyms) {
  576. return;
  577. }
  578. // iterate through each synonym and add it to the database
  579. foreach ($syn_array as $syn) {
  580. // skip this item if it's empty
  581. if (!$syn) {
  582. break;
  583. }
  584. // check to see if we have this accession number already in the database
  585. // if so then don't add it again. it messes up drupal if the insert fails.
  586. // It is possible for the accession number to be present and not the feature
  587. $synonym_sql = "SELECT synonym_id FROM {synonym} WHERE name = :name";
  588. $synonym = chado_query($synonym_sql, array(':name' => $syn))->fetchObject();
  589. if (!$synonym) {
  590. $synonym_isql = "
  591. INSERT INTO {synonym} (name, synonym_sgml, type_id)
  592. VALUES (:name, :synonym_sgml,
  593. (SELECT cvterm_id
  594. FROM {cvterm} CVT
  595. INNER JOIN {cv} ON CVT.cv_id = CV.cv_id
  596. WHERE CV.name = 'feature_property' and CVT.name = 'synonym')
  597. )
  598. ";
  599. if (!chado_query($synonym_isql, array(':name' => $syn, ':synonym_sgml' => $syn))) {
  600. tripal_report_error('tripal_feature', "Could not add synonym. ", array(), TRIPAL_WARNING);
  601. return;
  602. }
  603. // now get the synonym we just added
  604. $synonym_sql = "SELECT synonym_id FROM {synonym} WHERE name = :name";
  605. $synonym = chado_query($synonym_sql, array(':name' => $syn))->fetchObject();
  606. }
  607. // now add in our new sysnonym
  608. $feature_syn_isql = "
  609. INSERT INTO {feature_synonym} (synonym_id,feature_id,pub_id)
  610. VALUES (:synonym_id, :feature_id, :pub_id)";
  611. $args = array(':synonym_id' => $synonym->synonym_id, ':feature_id' => $feature_id, ':pub_id'=> 1);
  612. if (!chado_query($feature_syn_isql, $args)) {
  613. tripal_report_error('tripal_feature', "Could not associate synonym with feature. ", array(), TRIPAL_WARNING);
  614. return;
  615. }
  616. }
  617. }
  618. /**
  619. * Implements hook_load().
  620. *
  621. * When a node is requested by the user this function is called to allow us
  622. * to add auxiliary data to the node object.
  623. *
  624. * @ingroup tripal_feature
  625. */
  626. function chado_feature_load($nodes) {
  627. foreach ($nodes as $nid => $node) {
  628. // find the feature and add in the details
  629. $feature_id = chado_get_id_from_nid('feature', $nid);
  630. // if the nid does not have a matching record then skip this node.
  631. // this can happen with orphaned nodes.
  632. if (!$feature_id) {
  633. continue;
  634. }
  635. // build the feature variable
  636. $values = array('feature_id' => $feature_id);
  637. $feature = chado_generate_var('feature', $values);
  638. $nodes[$nid]->feature = $feature;
  639. // Now get the title
  640. $node->title = chado_get_node_title($node);
  641. }
  642. }
  643. /**
  644. * Implements hook_node_presave().
  645. * Acts on all content types.
  646. *
  647. * @ingroup tripal_feature
  648. */
  649. function tripal_feature_node_presave($node) {
  650. // set the title to ensure it is always unique
  651. switch ($node->type) {
  652. case 'chado_feature':
  653. // for a form submission the fields are part of the node object
  654. // but for a sync the fields are in an object of the node
  655. $name = '';
  656. $uname = '';
  657. $type = '';
  658. $organism_id = null;
  659. if(property_exists($node, 'uniquename')) {
  660. $organism_id = $node->organism_id;
  661. $name = $node->name;
  662. $uname = $node->uniquename;
  663. $type = $node->feature_type;
  664. }
  665. else if (property_exists($node, 'feature')) {
  666. $organism_id = $node->feature->organism_id;
  667. $name = $node->feature->name;
  668. $uname = $node->feature->uniquename;
  669. $type_id = $node->feature->type_id;
  670. $values = array('cvterm_id' => $type_id);
  671. $ftype = chado_select_record('cvterm', array('name'), $values);
  672. $type = $ftype[0]->name;
  673. }
  674. $values = array('organism_id' => $organism_id);
  675. $organism = chado_select_record('organism', array('genus', 'species'), $values);
  676. $node->title = "$name, $uname ($type) " . $organism[0]->genus . ' ' . $organism[0]->species;
  677. if ($name == $uname) {
  678. $node->title = "$name ($type) " . $organism[0]->genus . ' ' . $organism[0]->species;
  679. }
  680. break;
  681. }
  682. }
  683. /**
  684. * Implements hook_node_insert().
  685. * Acts on all content types.
  686. *
  687. * @ingroup tripal_feature
  688. */
  689. function tripal_feature_node_insert($node) {
  690. // set the URL path after inserting. We do it here because we do not
  691. // know the feature_id in the presave
  692. switch ($node->type) {
  693. case 'chado_feature':
  694. $feature_id = chado_get_id_from_nid('feature', $node->nid);
  695. // build the feature variable
  696. $values = array('feature_id' => $feature_id);
  697. $feature = chado_generate_var('feature', $values);
  698. $node->feature = $feature;
  699. // on an insert we need to add the feature_id to the node object
  700. // so that the tripal_feature_get_feature_url function can set the URL properly
  701. $node->feature_id = chado_get_id_from_nid('feature', $node->nid);
  702. // remove any previous alias
  703. db_query("DELETE FROM {url_alias} WHERE source = :source", array(':source' => "node/$node->nid"));
  704. // set the URL for this feature page
  705. $url_alias = tripal_feature_get_feature_url($node);
  706. $path_alias = array("source" => "node/$node->nid", "alias" => $url_alias);
  707. path_save($path_alias);
  708. // Now get the title
  709. $node->title = chado_get_node_title($node);
  710. break;
  711. }
  712. }
  713. /**
  714. * Implements hook_node_update().
  715. * Acts on all content types.
  716. *
  717. * @ingroup tripal_feature
  718. */
  719. function tripal_feature_node_update($node) {
  720. // add items to other nodes, build index and search results
  721. switch ($node->type) {
  722. case 'chado_feature':
  723. $feature_id = chado_get_id_from_nid('feature', $node->nid);
  724. // build the feature variable
  725. $values = array('feature_id' => $feature_id);
  726. $feature = chado_generate_var('feature', $values);
  727. $node->feature = $feature;
  728. // remove any previous alias
  729. db_query("DELETE FROM {url_alias} WHERE source = :source", array(':source' => "node/$node->nid"));
  730. // set the URL for this feature page
  731. $url_alias = tripal_feature_get_feature_url($node);
  732. $path_alias = array("source" => "node/$node->nid", "alias" => $url_alias);
  733. path_save($path_alias);
  734. // Now get the title
  735. $node->title = chado_get_node_title($node);
  736. break;
  737. }
  738. }
  739. /**
  740. * Return the url alias for a feature
  741. *
  742. * @param $node
  743. * A node object containing at least the feature_id and nid
  744. * @param $url_alias
  745. * Optional. This should be the URL alias syntax string that contains
  746. * placeholders such as [id], [genus], [species], [name], [uniquename],
  747. * and [type]. These placeholders will be substituted for actual values.
  748. * If this parameter is not provided then the value of the
  749. * chado_feature_url_string Drupal variable will be used.
  750. *
  751. * @ingroup tripal_feature
  752. */
  753. function tripal_feature_get_feature_url($node, $url_alias = NULL) {
  754. // get the starting URL alias
  755. if(!$url_alias) {
  756. $url_alias = variable_get('chado_feature_url_string', '/feature/[genus]/[species]/[type]/[uniquename]');
  757. if (!$url_alias) {
  758. $url_alias = '/feature/[genus]/[species]/[type]/[uniquename]';
  759. }
  760. $url_alias = preg_replace('/^\//', '', $url_alias); // remove any preceeding forward slash
  761. }
  762. // get the feature
  763. $values = array('feature_id' => $node->feature_id);
  764. $feature = chado_select_record('feature', array('*'), $values);
  765. if (!$feature) {
  766. tripal_report_error('trp-seturl', TRIPAL_ERROR, "Cannot find feature when setting URL alias for feature: %id", array('%id' => $node->feature_id));
  767. return FALSE;
  768. }
  769. $feature = (object) $feature[0];
  770. // get the organism
  771. $values = array('organism_id' => $feature->organism_id);
  772. $organism = chado_select_record('organism', array('*'), $values);
  773. if (!$organism) {
  774. tripal_report_error('trp-seturl', TRIPAL_ERROR, "Cannot find organism when setting URL alias for feature: %id", array('%id' => $node->feature_id));
  775. return FALSE;
  776. }
  777. $genus = preg_replace('/\s/', '_', strtolower($organism[0]->genus));
  778. $species = preg_replace('/\s/', '_', strtolower($organism[0]->species));
  779. // get the type
  780. $values = array('cvterm_id' => $feature->type_id);
  781. $cvterm = chado_select_record('cvterm', array('name'), $values);
  782. if (!$cvterm) {
  783. tripal_report_error('trp-seturl', TRIPAL_ERROR, "Cannot find type when setting URL alias for feature: %id", array('%id' => $node->feature_id));
  784. return FALSE;
  785. }
  786. $type = preg_replace('/\s/', '_', $cvterm[0]->name);
  787. // now substitute in the values
  788. $url_alias = preg_replace('/\[id\]/', $feature->feature_id, $url_alias);
  789. $url_alias = preg_replace('/\[genus\]/', $genus, $url_alias);
  790. $url_alias = preg_replace('/\[species\]/', $species, $url_alias);
  791. $url_alias = preg_replace('/\[type\]/', $type, $url_alias);
  792. $url_alias = preg_replace('/\[name\]/', $feature->name, $url_alias);
  793. $url_alias = preg_replace('/\[uniquename\]/', $feature->uniquename, $url_alias);
  794. // the dst field of the url_alias table is only 128 characters long.
  795. // if this is the case then simply return the node URL, we can't set this one
  796. if (strlen($url_alias) > 128) {
  797. tripal_report_error('trp-seturl', TRIPAL_ERROR, "Cannot set alias longer than 128 characters: %alias.", array('%alias' => $url_alias));
  798. return "node/" . $node->nid;
  799. }
  800. return $url_alias;
  801. }
  802. /**
  803. * Resets all of the URL alias for all features. This function is meant to
  804. * be run using Tripal's job managmenet interface
  805. *
  806. * @param $na
  807. * Tripal expects all jobs to have at least one argument. For this function
  808. * we don't need any, so we have this dummy argument as a filler
  809. * @param $job_id
  810. *
  811. * @ingroup tripal_feature
  812. */
  813. function tripal_feature_set_urls($na = NULL, $job = NULL) {
  814. $transaction = db_transaction();
  815. print "\nNOTE: Setting of URLs is performed using a database transaction. \n" .
  816. "If the load fails or is terminated prematurely then the entire set of \n" .
  817. "new URLs will be rolled back and no changes will be made\n\n";
  818. try {
  819. // get the number of records we need to set URLs for
  820. $csql = "SELECT count(*) FROM {chado_feature}";
  821. $num_nodes = db_query($csql)->fetchField();
  822. // calculate the interval at which we will print an update on the screen
  823. $num_set = 0;
  824. $num_per_interval = 100;
  825. // prepare the statements which will quickly add url alias. Because these
  826. // are not Chado tables we must manually prepare them
  827. $dsql = "DELETE FROM {url_alias} WHERE source = :source";
  828. $isql = "INSERT INTO url_alias (source, alias, language) VALUES (:source, :alias, :language)";
  829. // get the URL alias syntax string
  830. $url_alias = variable_get('chado_feature_url_string', '/feature/[genus]/[species]/[type]/[uniquename]');
  831. $url_alias = preg_replace('/^\//', '', $url_alias); // remove any preceeding forward slash
  832. // get the list of features that have been synced
  833. $sql = "SELECT * FROM {chado_feature}";
  834. $nodes = db_query($sql);
  835. foreach ($nodes as $node) {
  836. // get the URL alias
  837. $src = "node/$node->nid";
  838. $dst = tripal_feature_get_feature_url($node, $url_alias);
  839. // if the src and dst is the same (the URL alias couldn't be set)
  840. // then skip to the next one. There's nothing we can do about this one.
  841. if($src == $dst) {
  842. continue;
  843. }
  844. // remove any previous alias and then add the new one
  845. db_query($dsql, array(':source' => $src));
  846. db_query($isql, array(':source' => $src, ':alias' => $dst, ':language' => LANGUAGE_NONE));
  847. // update the job status every 1% features
  848. if ($job and $num_set % $num_per_interval == 0) {
  849. $percent = ($num_set / $num_nodes) * 100;
  850. tripal_set_job_progress($job, intval($percent));
  851. $percent = sprintf("%.2f", $percent);
  852. print "Setting URLs (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  853. }
  854. $num_set++;
  855. }
  856. $percent = ($num_set / $num_nodes) * 100;
  857. tripal_set_job_progress($job, intval($percent));
  858. $percent = sprintf("%.2f", $percent);
  859. print "Setting URLs (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes.\r";
  860. print "\nDone. Set " . number_format($num_set) . " URLs\n";
  861. }
  862. catch (Exception $e) {
  863. $transaction->rollback();
  864. print "\n"; // make sure we start errors on new line
  865. watchdog_exception('tripal_feature', $e);
  866. watchdog('trp-seturl', "Failed Removing URL Alias: %src", array('%src' => $src), WATCHDOG_ERROR);
  867. }
  868. }
  869. /**
  870. * Implements hook_node_view().
  871. * Acts on all content types.
  872. *
  873. * @ingroup tripal_feature
  874. */
  875. function tripal_feature_node_view($node, $view_mode, $langcode) {
  876. switch ($node->type) {
  877. case 'chado_feature':
  878. // Show feature browser and counts
  879. if ($view_mode == 'full') {
  880. $node->content['tripal_feature_alignments'] = array(
  881. '#markup' => theme('tripal_feature_alignments', array('node' => $node)),
  882. '#tripal_toc_id' => 'alignments',
  883. '#tripal_toc_title' => 'Alignments',
  884. );
  885. $node->content['tripal_feature_analyses'] = array(
  886. '#markup' => theme('tripal_feature_analyses', array('node' => $node)),
  887. '#tripal_toc_id' => 'analyses',
  888. '#tripal_toc_title' => 'Analyses',
  889. );
  890. $node->content['tripal_feature_base'] = array(
  891. '#markup' => theme('tripal_feature_base', array('node' => $node)),
  892. '#tripal_toc_id' => 'base',
  893. '#tripal_toc_title' => 'Overview',
  894. '#weight' => -100,
  895. );
  896. $node->content['tripal_feature_properties'] = array(
  897. '#markup' => theme('tripal_feature_properties', array('node' => $node)),
  898. '#tripal_toc_id' => 'properties',
  899. '#tripal_toc_title' => 'Properties',
  900. );
  901. $node->content['tripal_feature_publications'] = array(
  902. '#markup' => theme('tripal_feature_publications', array('node' => $node)),
  903. '#tripal_toc_id' => 'publications',
  904. '#tripal_toc_title' => 'Publications',
  905. );
  906. $node->content['tripal_feature_references'] = array(
  907. '#markup' => theme('tripal_feature_references', array('node' => $node)),
  908. '#tripal_toc_id' => 'references',
  909. '#tripal_toc_title' => 'Cross References',
  910. );
  911. $node->content['tripal_feature_relationships'] = array(
  912. '#markup' => theme('tripal_feature_relationships', array('node' => $node)),
  913. '#tripal_toc_id' => 'relationships',
  914. '#tripal_toc_title' => 'Relationships',
  915. );
  916. $node->content['tripal_feature_seqence'] = array(
  917. '#markup' => theme('tripal_feature_sequence', array('node' => $node)),
  918. '#tripal_toc_id' => 'sequences',
  919. '#tripal_toc_title' => 'Sequences',
  920. );
  921. $node->content['tripal_feature_synonyms'] = array(
  922. '#markup' => theme('tripal_feature_synonyms', array('node' => $node)),
  923. '#tripal_toc_id' => 'synonyms',
  924. '#tripal_toc_title' => 'Synonyms',
  925. );
  926. $node->content['tripal_feature_terms'] = array(
  927. '#markup' => theme('tripal_feature_terms', array('node' => $node)),
  928. '#tripal_toc_id' => 'terms',
  929. '#tripal_toc_title' => 'Annotated Terms',
  930. );
  931. }
  932. if ($view_mode == 'teaser') {
  933. $node->content['tripal_feature_teaser'] = array(
  934. '#markup' => theme('tripal_feature_teaser', array('node' => $node)),
  935. );
  936. }
  937. break;
  938. case 'chado_organism':
  939. // Show feature browser and counts
  940. if ($view_mode == 'full') {
  941. $node->content['tripal_organism_feature_counts'] = array(
  942. '#markup' => theme('tripal_organism_feature_counts', array('node' => $node)),
  943. '#tripal_toc_id' => 'feature_counts',
  944. '#tripal_toc_title' => 'Feature Summary',
  945. );
  946. $node->content['tripal_organism_feature_browser'] = array(
  947. '#markup' => theme('tripal_organism_feature_browser', array('node' => $node)),
  948. '#tripal_toc_id' => 'feature_browser',
  949. '#tripal_toc_title' => 'Feature Browser',
  950. );
  951. }
  952. break;
  953. // TODO: handle these node types. Should we also have a feature browser?
  954. case 'chado_library':
  955. break;
  956. case 'chado_stock':
  957. break;
  958. case 'chado_analysis':
  959. break;
  960. }
  961. }
  962. /**
  963. * Implements [content_type]_chado_node_default_title_format().
  964. *
  965. * Defines a default title format for the Chado Node API to set the titles on
  966. * Chado Feature nodes based on chado fields.
  967. */
  968. function chado_feature_chado_node_default_title_format() {
  969. return '[feature.name], [feature.uniquename] ([feature.type_id>cvterm.name]) [feature.organism_id>organism.genus] [feature.organism_id>organism.species]';
  970. }