tripal_feature.chado_node.inc 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  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. // We only want to validate when the node is saved.
  245. // Since this validate can be called on AJAX and Deletion of the node
  246. // we need to make this check to ensure queries are not executed
  247. // without the proper values.
  248. if(property_exists($node, "op") and $node->op != 'Save') {
  249. return;
  250. }
  251. // we are syncing if we do not have a node ID but we do have a feature_id. We don't
  252. // need to validate during syncing so just skip it.
  253. if (!property_exists($node, 'nid') and property_exists($node, 'feature_id') and $node->feature_id != 0) {
  254. return;
  255. }
  256. // remove surrounding white-space on submitted values
  257. $node->uniquename = property_exists($node, 'uniquename') ? trim($node->uniquename) : '';
  258. $node->fname = property_exists($node, 'fname') ? trim($node->fname) : '';
  259. $node->feature_type = property_exists($node, 'feature_type') ? trim($node->feature_type) : '';
  260. $node->residues = property_exists($node, 'residues') ? trim($node->residues) : '';
  261. // Validating for an update
  262. if (property_exists($node, 'nid')) {
  263. // make sure the feature type is a real sequence ontology term
  264. $type = tripal_get_cvterm(array(
  265. 'name' => $node->feature_type,
  266. 'cv_id' => array('name' =>'sequence')
  267. ));
  268. if (!$type) {
  269. form_set_error('feature_type', t("The feature type is not a valid name from the Sequence Ontology."));
  270. }
  271. // if this is an update, we want to make sure that a different feature for
  272. // the organism doesn't already have this uniquename. We don't want to give
  273. // two sequences the same uniquename
  274. if (property_exists($node, 'feature_id') and $node->feature_id != 0) {
  275. $sql = "
  276. SELECT *
  277. FROM {feature} F
  278. INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  279. WHERE
  280. F.uniquename = :uname AND
  281. F.organism_id = :organism_id AND
  282. CVT.name = :cvtname AND
  283. NOT f.feature_id = :feature_id
  284. ";
  285. $args = array(':uname' => $node->uniquename, ':organism_id' => $node->organism_id,
  286. ':cvtname' => $node->feature_type, ':feature_id' => $node->feature_id);
  287. $result = chado_query($sql, $args)->fetchObject();
  288. if ($result) {
  289. 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."));
  290. }
  291. }
  292. }
  293. // Validating for an insert
  294. else {
  295. // make sure the feature type is a real sequence ontology term
  296. $type = tripal_get_cvterm(array(
  297. 'name' => $node->feature_type,
  298. 'cv_id' => array('name' => 'sequence')
  299. ));
  300. if (!$type) {
  301. form_set_error('feature_type', t("The feature type is not a valid name from the Sequence Ontology."));
  302. }
  303. // if this is an insert then we just need to make sure this name doesn't
  304. // already exist for this organism if it does then we need to throw an error
  305. $sql = "
  306. SELECT *
  307. FROM {feature} F
  308. INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  309. WHERE
  310. F.uniquename = :name AND
  311. F.organism_id = :organism_id AND
  312. CVT.name = :cvtname
  313. ";
  314. $args = array(':name' => $node->uniquename, ':organism_id' => $node->organism_id, ':cvtname' => $node->feature_type);
  315. $result = chado_query($sql, $args)->fetchObject();
  316. if ($result) {
  317. 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."));
  318. }
  319. }
  320. }
  321. /**
  322. * Implement hook_node_access().
  323. *
  324. * This hook allows node modules to limit access to the node types they define.
  325. *
  326. * @param $node
  327. * The node on which the operation is to be performed, or, if it does not yet exist, the
  328. * type of node to be created
  329. *
  330. * @param $op
  331. * The operation to be performed
  332. *
  333. * @param $account
  334. * A user object representing the user for whom the operation is to be performed
  335. *
  336. * @return
  337. * If the permission for the specified operation is not set then return FALSE. If the
  338. * permission is set then return NULL as this allows other modules to disable
  339. * access. The only exception is when the $op == 'create'. We will always
  340. * return TRUE if the permission is set.
  341. *
  342. * @ingroup tripal_feature
  343. */
  344. function chado_feature_node_access($node, $op, $account) {
  345. $node_type = $node;
  346. if (is_object($node)) {
  347. $node_type = $node->type;
  348. }
  349. if($node_type == 'chado_feature') {
  350. if ($op == 'create') {
  351. if (!user_access('create chado_feature content', $account)) {
  352. return NODE_ACCESS_DENY;
  353. }
  354. return NODE_ACCESS_ALLOW;
  355. }
  356. if ($op == 'update') {
  357. if (!user_access('edit chado_feature content', $account)) {
  358. return NODE_ACCESS_DENY;
  359. }
  360. }
  361. if ($op == 'delete') {
  362. if (!user_access('delete chado_feature content', $account)) {
  363. return NODE_ACCESS_DENY;
  364. }
  365. }
  366. if ($op == 'view') {
  367. if (!user_access('access chado_feature content', $account)) {
  368. return NODE_ACCESS_DENY;
  369. }
  370. }
  371. }
  372. return NODE_ACCESS_IGNORE;
  373. }
  374. /**
  375. * Implements hook_insert().
  376. *
  377. * When a new chado_feature node is created we also need to add information
  378. * to our chado_feature table. This function is called on insert of a new node
  379. * of type 'chado_feature' and inserts the necessary information.
  380. *
  381. * @ingroup tripal_feature
  382. */
  383. function chado_feature_insert($node) {
  384. $feature_id = '';
  385. // if there is a feature_id in the $node object then this must be a sync so
  386. // we can skip adding the feature as it is already there, although
  387. // we do need to proceed with insertion into the chado/drupal linking table.
  388. if (!property_exists($node, 'feature_id')) {
  389. $node->uniquename = trim($node->uniquename);
  390. $node->fname = trim($node->fname);
  391. $node->feature_type = trim($node->feature_type);
  392. $node->residues = trim($node->residues);
  393. // remove spaces, newlines from residues
  394. $residues = preg_replace("/[\n\r\s]/", "", $node->residues);
  395. $obsolete = 'FALSE';
  396. if ($node->is_obsolete) {
  397. $obsolete = 'TRUE';
  398. }
  399. // get the feature type id
  400. $values = array(
  401. 'cv_id' => array(
  402. 'name' => 'sequence'
  403. ),
  404. 'name' => $node->feature_type
  405. );
  406. $type = chado_select_record('cvterm', array('cvterm_id'), $values);
  407. $values = array(
  408. 'organism_id' => $node->organism_id,
  409. 'name' => $node->fname,
  410. 'uniquename' => $node->uniquename,
  411. 'residues' => $residues,
  412. 'seqlen' => drupal_strlen($residues),
  413. 'is_obsolete' => $obsolete,
  414. 'type_id' => $type[0]->cvterm_id,
  415. 'md5checksum' => md5($residues)
  416. );
  417. $feature = chado_insert_record('feature', $values);
  418. if (!$feature) {
  419. drupal_set_message(t('Unable to add feature.'), 'warning');
  420. tripal_report_error('tripal_feature', TRIPAL_WARNING, 'Insert feature: Unable to create feature where values: %values',
  421. array('%values' => print_r($values, TRUE)));
  422. return;
  423. }
  424. $feature_id = $feature['feature_id'];
  425. // add the genbank accession and synonyms
  426. chado_feature_add_synonyms($node->synonyms, $feature_id);
  427. // * Properties Form *
  428. $details = array(
  429. 'property_table' => 'featureprop', // the name of the prop table
  430. 'base_table' => 'feature', // the name of your chado base table
  431. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  432. 'foreignkey_value' => $feature_id // the value of the feature_id key
  433. );
  434. chado_update_node_form_properties($node, $details);
  435. // * Additional DBxrefs Form *
  436. $details = array(
  437. 'linking_table' => 'feature_dbxref', // the name of your _dbxref table
  438. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  439. 'foreignkey_value' => $feature_id // the value of the feature_id key
  440. );
  441. chado_update_node_form_dbxrefs($node, $details);
  442. }
  443. else {
  444. $feature_id = $node->feature_id;
  445. }
  446. // Make sure the entry for this feature doesn't already exist in the
  447. // chado_feature table if it doesn't exist then we want to add it.
  448. $check_org_id = chado_get_id_from_nid('feature', $node->nid);
  449. if (!$check_org_id) {
  450. $record = new stdClass();
  451. $record->nid = $node->nid;
  452. $record->vid = $node->vid;
  453. $record->feature_id = $feature_id;
  454. drupal_write_record('chado_feature', $record);
  455. }
  456. }
  457. /**
  458. * Implements hook_update().
  459. *
  460. * @ingroup tripal_feature
  461. */
  462. function chado_feature_update($node) {
  463. $node->uniquename = trim($node->uniquename);
  464. $node->fname = trim($node->fname);
  465. $node->feature_type = trim($node->feature_type);
  466. $node->residues = trim($node->residues);
  467. $residues = preg_replace("/[\n\r\s]/", "", $node->residues);
  468. $obsolete = 'FALSE';
  469. if ($node->is_obsolete) {
  470. $obsolete = 'TRUE';
  471. }
  472. // get the feature type id
  473. $values = array(
  474. 'cv_id' => array(
  475. 'name' => 'sequence'
  476. ),
  477. 'name' => $node->feature_type
  478. );
  479. $type = chado_select_record('cvterm', array('cvterm_id'), $values);
  480. $feature_id = chado_get_id_from_nid('feature', $node->nid) ;
  481. if (sizeof($type) > 0) {
  482. $match = array(
  483. 'feature_id' => $feature_id,
  484. );
  485. $values = array(
  486. 'organism_id' => $node->organism_id,
  487. 'name' => $node->fname,
  488. 'uniquename' => $node->uniquename,
  489. 'residues' => $residues,
  490. 'seqlen' => drupal_strlen($residues),
  491. 'is_obsolete' => $obsolete,
  492. 'type_id' => $type[0]->cvterm_id,
  493. 'md5checksum' => md5($residues)
  494. );
  495. $options = array('return_record' => TRUE);
  496. $status = chado_update_record('feature', $match, $values, $options);
  497. // add the genbank synonyms
  498. chado_feature_add_synonyms($node->synonyms, $feature_id);
  499. // * Properties Form *
  500. $details = array(
  501. 'property_table' => 'featureprop', // the name of the prop table
  502. 'base_table' => 'feature', // the name of your chado base table
  503. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  504. 'foreignkey_value' => $feature_id // the value of the feature_id key
  505. );
  506. chado_update_node_form_properties($node, $details);
  507. // * Additional DBxrefs Form *
  508. $details = array(
  509. 'linking_table' => 'feature_dbxref', // the name of your _dbxref table
  510. 'foreignkey_name' => 'feature_id', // the name of the key in your base table
  511. 'foreignkey_value' => $feature_id // the value of the feature_id key
  512. );
  513. chado_update_node_form_dbxrefs($node, $details);
  514. }
  515. else {
  516. drupal_set_message(t('Unable to update feature.'), 'warning');
  517. tripal_report_error('tripal_feature', TRIPAL_WARNING,
  518. 'Update feature: Unable to update feature where values: %values',
  519. array('%values' => print_r($values, TRUE))
  520. );
  521. }
  522. }
  523. /**
  524. * Implements hook_delete().
  525. *
  526. * @ingroup tripal_feature
  527. */
  528. function chado_feature_delete($node) {
  529. $feature_id = chado_get_id_from_nid('feature', $node->nid);
  530. // if we don't have a library id for this node then this isn't a node of
  531. // type chado_library or the entry in the chado_library table was lost.
  532. if (!$feature_id) {
  533. return;
  534. }
  535. // remove the drupal content
  536. $sql_del = "DELETE FROM {chado_feature} WHERE nid = :nid AND vid = :vid";
  537. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  538. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  539. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  540. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  541. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  542. // Remove data from feature tables of chado database. This will
  543. // cause a cascade delete and remove all data in referencing tables
  544. // for this feature. However, we need t specifically delete from the
  545. // featureloc table because the box() PLSQL function calls another
  546. // function that does not reference the 'chado' schema and causes an error
  547. // the chado_query function can handle this problem so we specificall delete
  548. // from that table to prevent the error. The same problem exists for the
  549. // frange.featuregroup table
  550. $previous_db = chado_set_active('chado') ;
  551. db_query("DELETE FROM frange.featuregroup WHERE subject_id = :feature_id", array(':feature_id' => $feature_id));
  552. db_query("DELETE FROM frange.featuregroup WHERE object_id = :feature_id", array(':feature_id' => $feature_id));
  553. db_query("DELETE FROM frange.featuregroup WHERE group_id = :feature_id", array(':feature_id' => $feature_id));
  554. db_query("DELETE FROM frange.featuregroup WHERE srcfeature_id = :feature_id", array(':feature_id' => $feature_id));
  555. chado_set_active($previous_db);
  556. chado_query("DELETE FROM {featureloc} WHERE feature_id = :feature_id", array(':feature_id' => $feature_id));
  557. chado_query("DELETE FROM {featureloc} WHERE srcfeature_id = :feature_id", array(':feature_id' => $feature_id));
  558. chado_query("DELETE FROM {feature} WHERE feature_id = :feature_id", array(':feature_id' => $feature_id));
  559. drupal_set_message(t("The feature and all associated data were removed"));
  560. }
  561. /**
  562. * Add synonyms to a feature
  563. *
  564. * @param $synonyms
  565. * A string containing synonyms separated by a return character
  566. * @param $feature_id
  567. * The feature to attach the synonyms to
  568. *
  569. * @ingroup tripal_feature
  570. */
  571. function chado_feature_add_synonyms($synonyms, $feature_id) {
  572. // separate synomys by carriage returns
  573. $synonyms = preg_replace("/[\n\r]+/", " ", $synonyms);
  574. // split the synonyms into an array based on a space as the delimieter
  575. $syn_array = array();
  576. $syn_array = explode(" ", $synonyms);
  577. // remove any old synonyms
  578. $feature_syn_dsql = "DELETE FROM {feature_synonym} WHERE feature_id = :feature_id";
  579. if (!chado_query($feature_syn_dsql, array(':feature_id' => $feature_id))) {
  580. tripal_report_error('tripal_feature', TRIPAL_ERROR, "Could not remove synonyms from feature. ", array());
  581. return;
  582. }
  583. // return if we don't have any synonmys to add
  584. if (!$synonyms) {
  585. return;
  586. }
  587. // iterate through each synonym and add it to the database
  588. foreach ($syn_array as $syn) {
  589. // skip this item if it's empty
  590. if (!$syn) {
  591. break;
  592. }
  593. // check to see if we have this accession number already in the database
  594. // if so then don't add it again. it messes up drupal if the insert fails.
  595. // It is possible for the accession number to be present and not the feature
  596. $synonym_sql = "SELECT synonym_id FROM {synonym} WHERE name = :name";
  597. $synonym = chado_query($synonym_sql, array(':name' => $syn))->fetchObject();
  598. if (!$synonym) {
  599. $synonym_isql = "
  600. INSERT INTO {synonym} (name, synonym_sgml, type_id)
  601. VALUES (:name, :synonym_sgml,
  602. (SELECT cvterm_id
  603. FROM {cvterm} CVT
  604. INNER JOIN {cv} ON CVT.cv_id = CV.cv_id
  605. WHERE CV.name = 'feature_property' and CVT.name = 'synonym')
  606. )
  607. ";
  608. if (!chado_query($synonym_isql, array(':name' => $syn, ':synonym_sgml' => $syn))) {
  609. tripal_report_error('tripal_feature', "Could not add synonym. ", array(), TRIPAL_WARNING);
  610. return;
  611. }
  612. // now get the synonym we just added
  613. $synonym_sql = "SELECT synonym_id FROM {synonym} WHERE name = :name";
  614. $synonym = chado_query($synonym_sql, array(':name' => $syn))->fetchObject();
  615. }
  616. // now add in our new sysnonym
  617. $feature_syn_isql = "
  618. INSERT INTO {feature_synonym} (synonym_id,feature_id,pub_id)
  619. VALUES (:synonym_id, :feature_id, :pub_id)";
  620. $args = array(':synonym_id' => $synonym->synonym_id, ':feature_id' => $feature_id, ':pub_id'=> 1);
  621. if (!chado_query($feature_syn_isql, $args)) {
  622. tripal_report_error('tripal_feature', "Could not associate synonym with feature. ", array(), TRIPAL_WARNING);
  623. return;
  624. }
  625. }
  626. }
  627. /**
  628. * Implements hook_load().
  629. *
  630. * When a node is requested by the user this function is called to allow us
  631. * to add auxiliary data to the node object.
  632. *
  633. * @ingroup tripal_feature
  634. */
  635. function chado_feature_load($nodes) {
  636. foreach ($nodes as $nid => $node) {
  637. // find the feature and add in the details
  638. $feature_id = chado_get_id_from_nid('feature', $nid);
  639. // if the nid does not have a matching record then skip this node.
  640. // this can happen with orphaned nodes.
  641. if (!$feature_id) {
  642. continue;
  643. }
  644. // build the feature variable
  645. $values = array('feature_id' => $feature_id);
  646. $feature = chado_generate_var('feature', $values);
  647. $nodes[$nid]->feature = $feature;
  648. // Now get the title
  649. $node->title = chado_get_node_title($node);
  650. }
  651. }
  652. /**
  653. * Implements hook_node_presave().
  654. * Acts on all content types.
  655. *
  656. * @ingroup tripal_feature
  657. */
  658. function tripal_feature_node_presave($node) {
  659. // set the title to ensure it is always unique
  660. switch ($node->type) {
  661. // This step is for setting the title for the Drupal node. This title
  662. // is permanent and thus is created to be unique. Title changes provided
  663. // by tokens are generated on the fly dynamically, but the node title
  664. // seen in the content listing needs to be set here. Do not call
  665. // the chado_get_node_title() function here to set the title as the node
  666. // object isn't properly filled out and the function will fail.
  667. case 'chado_feature':
  668. // for a form submission the fields are part of the node object
  669. // but for a sync the fields are in an object of the node
  670. $name = '';
  671. $uname = '';
  672. $type = '';
  673. $organism_id = null;
  674. if(property_exists($node, 'uniquename')) {
  675. $organism_id = $node->organism_id;
  676. $name = $node->name;
  677. $uname = $node->uniquename;
  678. $type = $node->feature_type;
  679. }
  680. else if (property_exists($node, 'feature')) {
  681. $organism_id = $node->feature->organism_id;
  682. $name = $node->feature->name;
  683. $uname = $node->feature->uniquename;
  684. $type_id = $node->feature->type_id;
  685. $values = array('cvterm_id' => $type_id);
  686. $ftype = chado_select_record('cvterm', array('name'), $values);
  687. $type = $ftype[0]->name;
  688. }
  689. $values = array('organism_id' => $organism_id);
  690. $organism = chado_select_record('organism', array('genus', 'species'), $values);
  691. $node->title = "$name, $uname ($type) " . $organism[0]->genus . ' ' . $organism[0]->species;
  692. break;
  693. }
  694. }
  695. /**
  696. * Implements hook_node_insert().
  697. * Acts on all content types.
  698. *
  699. * @ingroup tripal_feature
  700. */
  701. function tripal_feature_node_insert($node) {
  702. // set the URL path after inserting. We do it here because we do not
  703. // know the feature_id in the presave
  704. switch ($node->type) {
  705. case 'chado_feature':
  706. // We still don't have a fully loaded node object in this hook. Therefore,
  707. // we need to simulate one so that the right values are available for
  708. // the URL to be determined.
  709. $feature_id = chado_get_id_from_nid('feature', $node->nid);
  710. $node->feature = chado_generate_var('feature', array('feature_id' => $feature_id));
  711. // Now use the API to set the path.
  712. chado_set_node_url($node);
  713. // Now get the title.
  714. $node->title = chado_get_node_title($node);
  715. break;
  716. }
  717. }
  718. /**
  719. * Implements hook_node_update().
  720. * Acts on all content types.
  721. *
  722. * @ingroup tripal_feature
  723. */
  724. function tripal_feature_node_update($node) {
  725. // add items to other nodes, build index and search results
  726. switch ($node->type) {
  727. case 'chado_feature':
  728. // Now use the API to set the path.
  729. chado_set_node_url($node);
  730. // Now get the title
  731. $node->title = chado_get_node_title($node);
  732. break;
  733. }
  734. }
  735. /**
  736. * Implements hook_node_view().
  737. * Acts on all content types.
  738. *
  739. * @ingroup tripal_feature
  740. */
  741. function tripal_feature_node_view($node, $view_mode, $langcode) {
  742. switch ($node->type) {
  743. case 'chado_feature':
  744. // Show feature browser and counts
  745. if ($view_mode == 'full') {
  746. $node->content['tripal_feature_alignments'] = array(
  747. '#theme' => 'tripal_feature_alignments',
  748. '#node' => $node,
  749. '#tripal_toc_id' => 'alignments',
  750. '#tripal_toc_title' => 'Alignments',
  751. );
  752. $node->content['tripal_feature_analyses'] = array(
  753. '#theme' => 'tripal_feature_analyses',
  754. '#node' => $node,
  755. '#tripal_toc_id' => 'analyses',
  756. '#tripal_toc_title' => 'Analyses',
  757. );
  758. $node->content['tripal_feature_base'] = array(
  759. '#theme' => 'tripal_feature_base',
  760. '#node' => $node,
  761. '#tripal_toc_id' => 'base',
  762. '#tripal_toc_title' => 'Overview',
  763. '#weight' => -100,
  764. );
  765. $node->content['tripal_feature_properties'] = array(
  766. '#theme' => 'tripal_feature_properties',
  767. '#node' => $node,
  768. '#tripal_toc_id' => 'properties',
  769. '#tripal_toc_title' => 'Properties',
  770. );
  771. $node->content['tripal_feature_publications'] = array(
  772. '#theme' => 'tripal_feature_publications',
  773. '#node' => $node,
  774. '#tripal_toc_id' => 'publications',
  775. '#tripal_toc_title' => 'Publications',
  776. );
  777. $node->content['tripal_feature_references'] = array(
  778. '#theme' => 'tripal_feature_references',
  779. '#node' => $node,
  780. '#tripal_toc_id' => 'references',
  781. '#tripal_toc_title' => 'Cross References',
  782. );
  783. $node->content['tripal_feature_relationships'] = array(
  784. '#theme' => 'tripal_feature_relationships',
  785. '#node' => $node,
  786. '#tripal_toc_id' => 'relationships',
  787. '#tripal_toc_title' => 'Relationships',
  788. );
  789. $node->content['tripal_feature_seqence'] = array(
  790. '#theme' => 'tripal_feature_sequence',
  791. '#node' => $node,
  792. '#tripal_toc_id' => 'sequences',
  793. '#tripal_toc_title' => 'Sequences',
  794. );
  795. $node->content['tripal_feature_synonyms'] = array(
  796. '#theme' => 'tripal_feature_synonyms',
  797. '#node' => $node,
  798. '#tripal_toc_id' => 'synonyms',
  799. '#tripal_toc_title' => 'Synonyms',
  800. );
  801. $node->content['tripal_feature_terms'] = array(
  802. '#theme' => 'tripal_feature_terms',
  803. '#node' => $node,
  804. '#tripal_toc_id' => 'terms',
  805. '#tripal_toc_title' => 'Annotated Terms',
  806. );
  807. }
  808. if ($view_mode == 'teaser') {
  809. $node->content['tripal_feature_teaser'] = array(
  810. '#theme' => 'tripal_feature_teaser',
  811. '#node' => $node,
  812. );
  813. }
  814. break;
  815. case 'chado_organism':
  816. // Show feature browser and counts
  817. if ($view_mode == 'full') {
  818. $node->content['tripal_organism_feature_counts'] = array(
  819. '#theme' => 'tripal_organism_feature_counts',
  820. '#node' => $node,
  821. '#tripal_toc_id' => 'feature_counts',
  822. '#tripal_toc_title' => 'Feature Summary',
  823. );
  824. $node->content['tripal_organism_feature_browser'] = array(
  825. '#theme' => 'tripal_organism_feature_browser',
  826. '#node' => $node,
  827. '#tripal_toc_id' => 'feature_browser',
  828. '#tripal_toc_title' => 'Feature Browser',
  829. );
  830. }
  831. break;
  832. // TODO: handle these node types. Should we also have a feature browser?
  833. case 'chado_library':
  834. break;
  835. case 'chado_stock':
  836. break;
  837. case 'chado_analysis':
  838. break;
  839. }
  840. }
  841. /**
  842. * Implements [content_type]_chado_node_default_title_format().
  843. *
  844. * Defines a default title format for the Chado Node API to set the titles on
  845. * Chado Feature nodes based on chado fields.
  846. */
  847. function chado_feature_chado_node_default_title_format() {
  848. return '[feature.name], [feature.uniquename] ([feature.type_id>cvterm.name]) [feature.organism_id>organism.genus] [feature.organism_id>organism.species]';
  849. }
  850. /**
  851. * Implements hook_chado_node_default_url_format().
  852. *
  853. * Designates a default URL format for feature nodes.
  854. */
  855. function chado_feature_chado_node_default_url_format() {
  856. return '/feature/[feature.organism_id>organism.genus]/[feature.organism_id>organism.species]/[feature.type_id>cvterm.name]/[feature.uniquename]';
  857. }