tripal_feature.delete.inc 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <?php
  2. /**
  3. * @file
  4. * Administration Interface for deleting multiple features
  5. */
  6. /**
  7. * A form for indicating the features to delete
  8. *
  9. * @ingroup tripal_feature
  10. */
  11. function tripal_feature_delete_form() {
  12. // get the list of organisms
  13. $sql = "SELECT * FROM {organism} ORDER BY genus, species";
  14. $org_rset = chado_query($sql);
  15. $organisms = array();
  16. $organisms[''] = '';
  17. while ($organism = $org_rset->fetchObject()) {
  18. $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
  19. }
  20. $form['desc'] = array(
  21. '#type' => 'markup',
  22. '#value' => t("Use one or more of the following fields to identify sets of features to be deleted."),
  23. );
  24. $form['feature_names']= array(
  25. '#type' => 'textarea',
  26. '#title' => t('Feature Names'),
  27. '#description' => t('Please provide a list of feature names or unique names,
  28. separated by spaces or by new lines to be delete. If you specify feature names then
  29. all other options below will be ignored (except the unique checkbox).'),
  30. );
  31. $form['is_unique'] = array(
  32. '#title' => t('Names are Unique Names'),
  33. '#type' => 'checkbox',
  34. '#description' => t('Select this checbox if the names listed in the feature
  35. names box above are the unique name of the feature rather than the human readable names.'),
  36. );
  37. $form['seq_type']= array(
  38. '#type' => 'textfield',
  39. '#title' => t('Sequence Type'),
  40. '#description' => t('Please enter the Sequence Ontology term that describes the features to be deleted. Use in conjunction with an organism or anaylysis.'),
  41. );
  42. $form['organism_id'] = array(
  43. '#title' => t('Organism'),
  44. '#type' => t('select'),
  45. '#description' => t("Choose the organism for which features will be deleted."),
  46. '#options' => $organisms,
  47. );
  48. // get the list of analyses
  49. $sql = "SELECT * FROM {analysis} ORDER BY name";
  50. $org_rset = chado_query($sql);
  51. $analyses = array();
  52. $analyses[''] = '';
  53. while ($analysis = $org_rset->fetchObject()) {
  54. $analyses[$analysis->analysis_id] = "$analysis->name ($analysis->program $analysis->programversion, $analysis->sourcename)";
  55. }
  56. // TODO: ADD THIS BACK IN LATER
  57. //
  58. // $form['analysis']['analysis_id'] = array (
  59. // '#title' => t('Analysis'),
  60. // '#type' => t('select'),
  61. // '#description' => t("Choose the analysis for which associated features will be deleted."),
  62. // '#options' => $analyses,
  63. // );
  64. $form['button'] = array(
  65. '#type' => 'submit',
  66. '#value' => t('Delete Features'),
  67. );
  68. return $form;
  69. }
  70. /**
  71. * Validation for the delete features form
  72. *
  73. * @ingroup tripal_feature
  74. */
  75. function tripal_feature_delete_form_validate($form, &$form_state) {
  76. $organism_id = $form_state['values']['organism_id'];
  77. $seq_type = trim($form_state['values']['seq_type']);
  78. $analysis_id = $form_state['values']['analysis_id'];
  79. $is_unique = $form_state['values']['is_unique'];
  80. $feature_names = $form_state['values']['feature_names'];
  81. if (!$organism_id and !$anaysis_id and !$seq_type and !$feature_names) {
  82. form_set_error('feature_names', t("Please select at least one option"));
  83. }
  84. // check to make sure the types exists
  85. if ($seq_type) {
  86. $cvtermsql = "
  87. SELECT CVT.cvterm_id
  88. FROM {cvterm} CVT
  89. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  90. LEFT JOIN {cvtermsynonym} CVTS on CVTS.cvterm_id = CVT.cvterm_id
  91. WHERE cv.name = :cvname and (CVT.name = :name or CVTS.synonym = :synonym)
  92. ";
  93. $cvterm = chado_query($cvtermsql,
  94. array(':cvname' => 'sequence', ':name' => $seq_type, ':synonym' => $seq_type))->fetchObject();
  95. if (!$cvterm) {
  96. form_set_error('seq_type', t("The Sequence Ontology (SO) term selected for the " .
  97. "sequence type is not available in the database. Please check spelling or select another."));
  98. }
  99. }
  100. }
  101. /**
  102. * Submit for the delete features form
  103. *
  104. * @ingroup tripal_feature
  105. */
  106. function tripal_feature_delete_form_submit($form, &$form_state) {
  107. global $user;
  108. $organism_id = $form_state['values']['organism_id'];
  109. $seq_type = trim($form_state['values']['seq_type']);
  110. $analysis_id = $form_state['values']['analysis_id'];
  111. $is_unique = $form_state['values']['is_unique'];
  112. $feature_names = $form_state['values']['feature_names'];
  113. $args = array($organism_id, $analysis_id, $seq_type, $is_unique, $feature_names);
  114. tripal_add_job("Delete features", 'tripal_feature',
  115. 'tripal_feature_delete_features', $args, $user->uid);
  116. }
  117. /**
  118. * Function to actually delete the features indicated
  119. *
  120. * @param $organism_id
  121. * (Optional) The organism_id of the features to delete
  122. * @param $analysis_id
  123. * (Optional) The analysis_id of the features to delete
  124. * @param $seq_type
  125. * (Optional) The cvterm.name of the feature types to delete
  126. * @param $is_unique
  127. * (Optional) A Boolean stating whether the names are unique (ie: feature.uniquename)
  128. * or not (ie: feature.name)
  129. * @param $feature_names
  130. * (Optional) A space separated list of the names of features to delete
  131. * @param $job
  132. * The tripal_job id
  133. *
  134. * @ingroup tripal_feature
  135. */
  136. function tripal_feature_delete_features($organism_id, $analysis_id, $seq_type,
  137. $is_unique, $feature_names, $job = NULL) {
  138. global $user;
  139. $match = array();
  140. // if feature names have been provided then handle that separately
  141. if ($feature_names) {
  142. $names = preg_split('/\s+/', $feature_names);
  143. if (sizeof($names) == 1) {
  144. $names = $names[0];
  145. }
  146. if ($is_unique) {
  147. $match['uniquename'] = $names;
  148. }
  149. else {
  150. $match['name'] = $names;
  151. }
  152. $num_deletes = chado_select_record('feature', array('count(*) as cnt'), $match);
  153. print "Deleting " . $num_deletes[0]->cnt . " features\n";
  154. chado_delete_record('feature', $match);
  155. }
  156. // if the user has provided an analysis_id then handle that separately
  157. elseif ($analysis_id) {
  158. tripal_feature_delete_by_analysis();
  159. }
  160. else {
  161. if ($organism_id) {
  162. $match['organism_id'] = $organism_id;
  163. }
  164. if ($seq_type) {
  165. $match['type_id'] = array(
  166. 'name' => $seq_type,
  167. 'cv_id' => array(
  168. 'name' => 'sequence'
  169. ),
  170. );
  171. }
  172. $num_deletes = chado_select_record('feature', array('count(*) as cnt'), $match);
  173. print "Deleting " . $num_deletes[0]->cnt . " features\n";
  174. chado_delete_record('feature', $match);
  175. }
  176. print "Removing orphaned feature pages\n";
  177. tripal_features_cleanup(array(), $user->uid);
  178. }
  179. /**
  180. * Function to delete features based on an analysis passed in. This has not yet been
  181. * implemented in the form
  182. *
  183. * @todo: Implement this functionality and then add back in the form field
  184. *
  185. * @param $organism_id
  186. * (Optional) The organism_id of the features to delete
  187. * @param $analysis_id
  188. * (Optional) The analysis_id of the features to delete
  189. * @param $seq_type
  190. * (Optional) The cvterm.name of the feature types to delete
  191. * @param $is_unique
  192. * (Optional) A Boolean stating whether the names are unique (ie: feature.uniquename)
  193. * or not (ie: feature.name)
  194. * @param $feature_names
  195. * (Optional) A space separated list of the names of features to delete
  196. * @param $job
  197. * The tripal_job id
  198. *
  199. * @ingroup tripal_feature
  200. */
  201. function tripal_feature_delete_by_analysis($organism_id, $analysis_id, $seq_type,
  202. $is_unique, $feature_names, $job = NULL) {
  203. }