tripal_feature.chado_node.inc 32 KB

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