tripal_analysis.form.inc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <?php
  2. /**
  3. * When editing or creating a new node of type 'chado_analysis' we need
  4. * a form. This function creates the form that will be used for this.
  5. *
  6. * @ingroup tripal_analysis
  7. */
  8. function chado_analysis_form($node, &$form_state) {
  9. $form = array();
  10. // Default values can come in the following ways:
  11. //
  12. // 1) as elements of the $node object. This occurs when editing an existing analysis
  13. // 2) in the $form_state['values'] array which occurs on a failed validation or
  14. // ajax callbacks from non submit form elements
  15. // 3) in the $form_state['input'[ array which occurs on ajax callbacks from submit
  16. // form elements and the form is being rebuilt
  17. //
  18. // set form field defaults
  19. $analysis_id = null;
  20. $analysisname = '';
  21. $program = '';
  22. $programversion = '';
  23. $algorithm = '';
  24. $sourcename = '';
  25. $sourceversion = '';
  26. $sourceuri = '';
  27. $timeexecuted = '';
  28. $description = '';
  29. $d_removed = array(); // lists removed properties
  30. $num_new = 0; // the number of new rows
  31. // if we are editing an existing node then the analysis is already part of the node
  32. if (property_exists($node, 'analysis')) {
  33. $analysis = $node->analysis;
  34. $analysis = tripal_core_expand_chado_vars($analysis, 'field', 'analysis.description');
  35. $analysis_id = $analysis->analysis_id;
  36. // get form defaults
  37. $analysisname = $analysis->name;
  38. $program = $analysis->program;
  39. $programversion = $analysis->programversion;
  40. $algorithm = $analysis->algorithm;
  41. $sourcename = $analysis->sourcename;
  42. $sourceversion = $analysis->sourceversion;
  43. $sourceuri = $analysis->sourceuri;
  44. $timeexecuted = $analysis->timeexecuted;
  45. $description = $analysis->description;
  46. // set the organism_id in the form
  47. $form['analysis_id'] = array(
  48. '#type' => 'value',
  49. '#value' => $analysis->analysis_id,
  50. );
  51. }
  52. // if we are re constructing the form from a failed validation or ajax callback
  53. // then use the $form_state['values'] values
  54. if (array_key_exists('values', $form_state)) {
  55. $analysisname = $form_state['values']['analysisname'];
  56. $program = $form_state['values']['program'];
  57. $programversion = $form_state['values']['programversion'];
  58. $algorithm = $form_state['values']['algorithm'];
  59. $sourcename = $form_state['values']['sourcename'];
  60. $sourceversion = $form_state['values']['sourceversion'];
  61. $sourceuri = $form_state['values']['sourceuri'];
  62. $timeexecuted = $form_state['values']['timeexecuted'];
  63. $description = $form_state['values']['description'];
  64. $d_removed = $form_state['values']['removed'];
  65. $num_new = $form_state['values']['num_new'] ? $form_state['values']['num_new'] : 0;
  66. }
  67. // if we are re building the form from after submission (from ajax call) then
  68. // the values are in the $form_state['input'] array
  69. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  70. $analysisname = $form_state['input']['analysisname'];
  71. $program = $form_state['input']['program'];
  72. $programversion = $form_state['input']['programversion'];
  73. $algorithm = $form_state['input']['algorithm'];
  74. $sourcename = $form_state['input']['sourcename'];
  75. $sourceversion = $form_state['input']['sourceversion'];
  76. $sourceuri = $form_state['input']['sourceuri'];
  77. $timeexecuted = $form_state['input']['timeexecuted'];
  78. $description = $form_state['input']['description'];
  79. $d_removed = $form_state['input']['removed'];
  80. $num_new = $form_state['input']['num_new'] ? $form_state['input']['num_new'] : 0;
  81. }
  82. $form['title']= array(
  83. '#type' => 'value',
  84. '#default_value' => $node->title,
  85. );
  86. $form['instructions'] = array(
  87. '#markup' => t('<b>Note</b>: When adding any type of data it is good to associate it with
  88. an analysis so that site visitors can identify the source of the data including
  89. necessary materials and methods. The fields below imply that all analyses
  90. are derived from some software package. But, data can also be derived via retreival
  91. from an external source or an analysis pipeline with multipel software components.
  92. In these cases, provide values for the fields below that best makes sense
  93. '),
  94. );
  95. $form['analysisname']= array(
  96. '#type' => 'textfield',
  97. '#title' => t('Analysis Name'),
  98. '#required' => TRUE,
  99. '#default_value' => $analysisname,
  100. '#description' => t("This should be a brief name that
  101. describes the analysis succintly. This name will helps the user find analyses."),
  102. );
  103. $form['program']= array(
  104. '#type' => 'textfield',
  105. '#title' => t('Program, Pipeline Name or Method Name'),
  106. '#required' => TRUE,
  107. '#default_value' => $program,
  108. '#description' => t("Program name, e.g. blastx, blastp, sim4, genscan. If the analysis was not derived from a software package, provide a very brief description of the pipeline or method."),
  109. );
  110. $form['programversion']= array(
  111. '#type' => 'textfield',
  112. '#title' => t('Program, Pipeline or Method version'),
  113. '#required' => TRUE,
  114. '#default_value' => $programversion,
  115. '#description' => t("Version description, e.g. TBLASTX 2.0MP-WashU [09-Nov-2000]. Enter 'n/a' if no version is available or applicable."),
  116. );
  117. $form['algorithm']= array(
  118. '#type' => 'textfield',
  119. '#title' => t('Algorithm'),
  120. '#required' => FALSE,
  121. '#default_value' => $algorithm,
  122. '#description' => t("Algorithm name, e.g. blast."),
  123. );
  124. $form['sourcename']= array(
  125. '#type' => 'textfield',
  126. '#title' => t('Source Name'),
  127. '#required' => TRUE,
  128. '#default_value' => $sourcename,
  129. '#description' => t('The name of the source data. This could be a file name, data set name or a
  130. small description for how the data was collected. For long descriptions use the description field below'),
  131. );
  132. $form['sourceversion']= array(
  133. '#type' => 'textfield',
  134. '#title' => t('Source Version'),
  135. '#required' => FALSE,
  136. '#default_value' => $sourceversion,
  137. '#description' => t('If the source dataset has a version, include it here'),
  138. );
  139. $form['sourceuri']= array(
  140. '#type' => 'textfield',
  141. '#title' => t('Source URI'),
  142. '#required' => FALSE,
  143. '#default_value' => $sourceuri,
  144. '#description' => t("This is a permanent URL or URI for the source of the analysis.
  145. Someone could recreate the analysis directly by going to this URI and
  146. fetching the source data (e.g. the blast database, or the training model)."),
  147. );
  148. // Get time saved in chado
  149. $default_time = $timeexecuted;
  150. $year = preg_replace("/^(\d+)-\d+-\d+ .*/", "$1", $default_time);
  151. $month = preg_replace("/^\d+-0?(\d+)-\d+ .*/", "$1", $default_time);
  152. $day = preg_replace("/^\d+-\d+-0?(\d+) .*/", "$1", $default_time);
  153. // If the time is not set, use current time
  154. if (!$default_time) {
  155. $default_time = REQUEST_TIME;
  156. $year = format_date($default_time, 'custom', 'Y');
  157. $month = format_date($default_time, 'custom', 'n');
  158. $day = format_date($default_time, 'custom', 'j');
  159. }
  160. $form['timeexecuted']= array(
  161. '#type' => 'date',
  162. '#title' => t('Time Executed'),
  163. '#required' => TRUE,
  164. '#default_value' => array(
  165. 'year' => $year,
  166. 'month' => $month,
  167. 'day' => $day,
  168. ),
  169. );
  170. $form['description']= array(
  171. '#type' => 'textarea',
  172. '#rows' => 15,
  173. '#title' => t('Materials & Methods (Description and/or Program Settings)'),
  174. '#required' => FALSE,
  175. '#default_value' => $description,
  176. '#description' => t('Please provide all necessary information to allow
  177. someone to recreate the analysis, including materials and methods
  178. for collection of the source data and performing the analysis'),
  179. );
  180. // get the analysis properties
  181. $properties = array();
  182. $properties[] = 'Select a Property';
  183. $sql = "
  184. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition
  185. FROM {cvterm} CVT
  186. INNER JOIN {cv} ON CVT.cv_id = CV.cv_id
  187. WHERE
  188. CV.name = 'analysis_property' AND
  189. NOT CVT.is_obsolete = 1
  190. ORDER BY CVT.name ASC
  191. ";
  192. $prop_types = chado_query($sql);
  193. while ($prop = $prop_types->fetchObject()) {
  194. $properties[$prop->cvterm_id] = $prop->name;
  195. }
  196. $exclude = array();
  197. $include = array();
  198. $instructions = t('To add additional properties to the drop down. ' . l("Add terms to the analysis_property vocabulary", "admin/tripal/chado/tripal_cv/cvterm/add") . ".");
  199. tripal_core_properties_form($form, $form_state, 'analysisprop', 'analysis_id', 'analysis_property',
  200. $properties, $analysis_id, $exclude, $include, $instructions, 'Properties');
  201. return $form;
  202. }
  203. /**
  204. * Validates the user input before creating an analysis node
  205. *
  206. * @ingroup tripal_analysis
  207. */
  208. function chado_analysis_validate($node, $form, &$form_state) {
  209. // use the analysis parent to validate the node
  210. tripal_analysis_validate($node, $form, $form_state);
  211. }
  212. /**
  213. * This validation is being used for three activities:
  214. * CASE A: Update a node that exists in both drupal and chado
  215. * CASE B: Synchronizing a node from chado to drupal
  216. * CASE C: Inserting a new node that exists in niether drupal nor chado
  217. *
  218. * @ingroup tripal_analysis
  219. */
  220. function tripal_analysis_validate($node, $form, &$form_state) {
  221. // remove surrounding white-space on submitted values
  222. $node->analysisname = trim($node->analysisname);
  223. $node->description = trim($node->description);
  224. $node->program = trim($node->program);
  225. $node->programversion = trim($node->programversion);
  226. $node->algorithm = trim($node->algorithm);
  227. $node->sourcename = trim($node->sourcename);
  228. $node->sourceversion = trim($node->sourceversion);
  229. $node->sourceuri = trim($node->sourceuri);
  230. // if this is a delete then don't validate
  231. if($node->op == 'Delete') {
  232. return;
  233. }
  234. // we are syncing if we do not have a node ID but we do have a analysis_id. We don't
  235. // need to validate during syncing so just skip it.
  236. if (is_null($node->nid) and property_exists($node, 'analysis_id') and $node->analysis_id != 0) {
  237. return;
  238. }
  239. // Validating for an update
  240. if (!is_null($node->nid)) {
  241. // get the existing node
  242. $values = array('analysis_id' => $node->analysis_id);
  243. $result = tripal_core_chado_select('analysis', array('*'), $values);
  244. $analysis = $result[0];
  245. // if the name has changed make sure it doesn't conflict with an existing name
  246. if ($analysis->name != $node->analysisname) {
  247. $values = array('name' => $node->analysisname);
  248. $result = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  249. if ($result and count($result) > 0) {
  250. form_set_error('analysisname', 'Cannot update the analysis with this analysis name. An analysis with this name already exists.');
  251. return;
  252. }
  253. }
  254. // if the unique constraint has changed check to make sure it doesn't conflict with an
  255. // existing record
  256. if ($analysis->program != $node->program or $analysis->programversion != $node->programversion or
  257. $analysis->sourcename != $node->sourcename) {
  258. $values = array(
  259. 'program' => $node->program,
  260. 'programversion' => $node->programversion,
  261. 'sourcename' => $node->sourcename,
  262. );
  263. $result = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  264. if ($result and count($result) > 0) {
  265. if ($analysis->program != $node->program) {
  266. $field = 'program';
  267. }
  268. if ($analysis->programversion != $node->programversion) {
  269. $field = 'programversion';
  270. }
  271. if ($analysis->sourcename != $node->sourcename) {
  272. $field = 'sourcename';
  273. }
  274. form_set_error($field, 'Cannot update the analysis with this program,
  275. program version and source name. An analysis with these values already exists.');
  276. return;
  277. }
  278. }
  279. }
  280. // Validating for an insert
  281. else {
  282. $values = array(
  283. 'program' => $node->program,
  284. 'programversion' => $node->programversion,
  285. 'sourcename' => $node->sourcename,
  286. );
  287. $analysis = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  288. if ($analysis and count($analysis) > 0) {
  289. form_set_error('program', 'Cannot add the analysis with this program,
  290. program version and source name. An analysis with these values already exists.');
  291. return;
  292. }
  293. // make sure we have a unique analysis name. This is not a requirement
  294. // for the analysis table but we use the analysis name for the Drupal node
  295. // title, so it should be unique
  296. $values = array('name' => $node->analysisname);
  297. $result = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  298. if ($result and count($result) > 0) {
  299. form_set_error('analysisname', 'Cannot add the analysis with this analysis name. An analysis with this name already exists.');
  300. return;
  301. }
  302. }
  303. }