tripal_feature.chado_node.inc 35 KB

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