blast_ui.form_per_program.inc 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. <?php
  2. /**
  3. * @file
  4. * Forms in the file provide a per BLAST program interface to submitting BLASTs.
  5. *
  6. * In other words, it provides a form for blastn, one for blastp, etc. It does
  7. * this using a single form function for code reusability and depending upon
  8. * the $type passed in, it will execute additional hooks allowing for program
  9. * specific modifications & advanced options.
  10. */
  11. /**
  12. * This single form definition provides 4 different program-specific forms.
  13. */
  14. function blast_ui_per_blast_program_form($form, $form_state) {
  15. // CSS support to the form
  16. $form['#attached']['css'] = array(
  17. drupal_get_path('module', 'blast_ui') . '/theme/css/form.css',
  18. );
  19. // @deepaksomanadh - Code added for edit and resubmit funcitonality
  20. // Approach: persist the form data and read it back using JobID
  21. $job_data = variable_get('job_data', '');
  22. if(isset($_GET['jid']) && isset($job_data)) {
  23. $jid = base64_decode($_GET['jid']);
  24. } else {
  25. $job_data = array();
  26. $jid = 0;
  27. }
  28. // Determine the BLAST program.
  29. $query_type = $form_state['build_info']['args'][0];
  30. $db_type = $form_state['build_info']['args'][1];
  31. if ($query_type == 'nucleotide') {
  32. if ($db_type == 'nucleotide') {
  33. $blast_program = 'blastn';
  34. }
  35. elseif ($db_type == 'protein') {
  36. $blast_program = 'blastx';
  37. }
  38. }
  39. elseif ($query_type == 'protein') {
  40. if ($db_type == 'nucleotide') {
  41. $blast_program = 'tblastn';
  42. }
  43. elseif ($db_type == 'protein') {
  44. $blast_program = 'blastp';
  45. }
  46. }
  47. // Set the title to be more Researcher friendly.
  48. drupal_set_title(t(
  49. '@query to @db BLAST (@program)',
  50. array(
  51. '@query' => ucfirst($query_type),
  52. '@db' => ucfirst($db_type),
  53. '@program' => $blast_program
  54. )
  55. ));
  56. // Add the details about the specific BLAST choosen.
  57. $form['query_type'] = array(
  58. '#type' => 'hidden',
  59. '#value' => $query_type
  60. );
  61. $form['db_type'] = array(
  62. '#type' => 'hidden',
  63. '#value' => $db_type
  64. );
  65. $form['blast_program'] = array(
  66. '#type' => 'hidden',
  67. '#value' => $blast_program
  68. );
  69. // NUCLEOTIDE QUERY
  70. //.........................
  71. $form['query'] = array(
  72. '#type' => 'fieldset',
  73. '#title' => t('Enter %type Query Sequence',
  74. array('%type' => ucfirst($query_type))),
  75. '#description' => t('Enter one or more queries in the top text box or use '
  76. . 'the browse button to upload a file from your local disk. The file may '
  77. . 'contain a single sequence or a list of sequences. In both cases, the '
  78. . 'data must be in <a href="@formaturl" target="_blank">FASTA format</a>.',
  79. array(
  80. '@formaturl' => 'http://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml'
  81. )
  82. ),
  83. '#collapsible' => TRUE,
  84. '#collapsed' => FALSE,
  85. );
  86. // Checkbox to show an example.
  87. $form['query']['example_sequence'] = array(
  88. '#type' => 'checkbox',
  89. '#title' => t('Show an Example Sequence'),
  90. '#prefix' => '<span style="float: right;">',
  91. '#suffix' => '</span>',
  92. '#ajax' => array(
  93. 'callback' => 'ajax_blast_ui_example_sequence_callback',
  94. 'wrapper' => 'fasta-textarea',
  95. 'method' => 'replace',
  96. 'effect' => 'fade',
  97. ),
  98. );
  99. // Textfield for submitting a mult-FASTA query
  100. $form['query']['FASTA'] = array(
  101. '#type' => 'textarea',
  102. '#title' => t('Enter FASTA sequence(s)'),
  103. '#description'=>t('Enter query sequence(s) in the text area.'),
  104. '#default_value' => isset($job_data[$jid]['fasta']) ? $job_data[$jid]['fasta'] : '',
  105. '#prefix' => '<div id="fasta-textarea">',
  106. '#suffix' => '</div>',
  107. );
  108. // Upload a file as an alternative to enter a query sequence
  109. $form['#attributes']['enctype'] = 'multipart/form-data';
  110. $form['query']['UPLOAD'] = array(
  111. '#title' => 'Or upload your own query FASTA: ',
  112. '#type' => 'managed_file',
  113. '#description' => t('The file should be a plain-text FASTA
  114. (.fasta, .fna, .fa) file. In other words, it cannot have formatting as is the
  115. case with MS Word (.doc, .docx) or Rich Text Format (.rtf). It cannot be greater
  116. than %max_size in size. <strong>Don\'t forget to press the Upload button before
  117. attempting to submit your BLAST.</strong>',
  118. array(
  119. '%max_size' => round(file_upload_max_size() / 1024 / 1024,1) . 'MB'
  120. )
  121. ),
  122. '#upload_validators' => array(
  123. 'file_validate_extensions' => array('fasta fna fa'),
  124. 'file_validate_size' => array(file_upload_max_size()),
  125. ),
  126. );
  127. // BLAST DATABASE
  128. //.........................
  129. $form['DB'] = array(
  130. '#type' => 'fieldset',
  131. '#title' => t('Choose Search Set'),
  132. '#description' => t('Choose from one of the %type BLAST databases listed '
  133. . 'below. You can also use the browse button to upload a file from your '
  134. . 'local disk. The file may contain a single sequence or a list of '
  135. . 'sequences. ',
  136. array('%type' => $db_type)),
  137. '#collapsible' => TRUE,
  138. '#collapsed' => FALSE,
  139. );
  140. $options = get_blast_database_options($db_type);
  141. $form['DB']['SELECT_DB'] = array(
  142. '#type' => 'select',
  143. '#title' => t('%type BLAST Databases:', array('%type' => ucfirst($db_type))),
  144. '#options' => $options,
  145. '#default_value' => isset($job_data[$jid]['db_option']) ? $job_data[$jid]['db_option'] : 0,
  146. );
  147. if (variable_get('blast_ui_allow_target_upload', FALSE)) {
  148. // Upload a file as an alternative to selecting an existing BLAST database
  149. $form['#attributes']['enctype'] = 'multipart/form-data';
  150. $form['DB']['DBUPLOAD'] = array(
  151. '#title' => 'Or upload your own dataset: ',
  152. '#type' => 'managed_file',
  153. '#description' => t('The file should be a plain-text FASTA
  154. (.fasta, .fna, .fa) file. In other words, it cannot have formatting as is the
  155. case with MS Word (.doc, .docx) or Rich Text Format (.rtf). It cannot be greater
  156. than %max_size in size. <strong>Don\'t forget to press the Upload button before
  157. attempting to submit your BLAST.</strong>',
  158. array(
  159. '%max_size' => round(file_upload_max_size() / 1024 / 1024,1) . 'MB'
  160. )
  161. ),
  162. '#upload_validators' => array(
  163. 'file_validate_extensions' => array('fasta fna fa'),
  164. 'file_validate_size' => array(file_upload_max_size()),
  165. ),
  166. );
  167. }
  168. // Advanced Options
  169. //.........................
  170. // These options will be different depending upon the program selected.
  171. // Therefore, allow for program-specific callbacks to populate these options.
  172. $form['ALG'] = array(
  173. '#type' => 'fieldset',
  174. '#title' => t('Advanced Options'),
  175. '#collapsible' => TRUE,
  176. '#collapsed' => TRUE,
  177. );
  178. $advanced_options_form = 'blast_ui_' . $blast_program . '_advanced_options_form';
  179. if (function_exists($advanced_options_form)) {
  180. call_user_func_array($advanced_options_form, array(&$form, $form_state));
  181. }
  182. // Submit
  183. //.........................
  184. $form['submit'] = array(
  185. '#type' => 'submit',
  186. '#default_value' => ' BLAST ',
  187. );
  188. return $form;
  189. }
  190. /**
  191. * Validate the user options submitted via the above form.
  192. *
  193. * @see blast_ui_per_blast_program_form().
  194. */
  195. function blast_ui_per_blast_program_form_validate($form, &$form_state) {
  196. $blast_program = $form_state['values']['blast_program'];
  197. $type = $form_state['values']['query_type'];
  198. if ($type == 'nucleotide') {
  199. $molecule_type = 'nucleotides';
  200. }
  201. else {
  202. $molecule_type = 'amino acid residues';
  203. }
  204. // Validate Query
  205. //----------------
  206. // @todo: We are currently not validating uploaded files are valid FASTA.
  207. // First check to see if we have an upload & if so then validate it.
  208. $file = file_load($form_state['values']['UPLOAD']);
  209. // If the $file is populated then this is a newly uploaded, temporary file.
  210. if (is_object($file)) {
  211. $form_state['qFlag'] = 'upQuery';
  212. $form_state['upQuery_path'] = drupal_realpath($file->uri);
  213. }
  214. // Otherwise there was no file uploaded.
  215. // Check if there was a query sequence entered in the texfield.
  216. elseif (!empty($form_state['input']['FASTA'])) {
  217. // Check to ensure that the query sequence entered is valid FASTA.
  218. if (validate_fasta_sequence($type, $form_state['input']['FASTA'])){
  219. form_set_error('query', t('You need to provide a valid FASTA sequence '
  220. . 'for the query. It should contain a FASTA header/definition line '
  221. . 'followed by %molecule-type. For more information see the '
  222. . '<a href="@url" target="_blank">NCBI FASTA Specification</a>.',
  223. array(
  224. '%molecule-type' => $molecule_type,
  225. '@url' => 'http://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml'
  226. )));
  227. }
  228. else {
  229. $form_state['qFlag'] = 'seqQuery';
  230. }
  231. }
  232. // Otherwise they didn't enter a query!!
  233. else {
  234. form_set_error('query', t('No query sequence given. Only raw sequence or '
  235. . 'sequence of type FASTA can be read. Enter sequence in the box provided '
  236. . 'or upload a plain text file.'));
  237. }
  238. // Validate Database
  239. //-------------------
  240. // @todo: We are currently not validating uploaded files are valid FASTA.
  241. // First check to see if we have an upload & if so then validate it.
  242. if (isset($form_state['values']['DBUPLOAD'])) {
  243. $file = file_load($form_state['values']['DBUPLOAD']);
  244. // If the $file is populated then this is a newly uploaded, temporary file.
  245. if (is_object($file)) {
  246. $form_state['dbFlag'] = 'upDB';
  247. $form_state['upDB_path'] = drupal_realpath($file->uri);
  248. }
  249. // Otherwise there was no file uploaded
  250. // Check if there was a database choosen from the list instead
  251. elseif (!empty($form_state['values']['SELECT_DB'])) {
  252. $form_state['dbFlag'] = 'blastdb';
  253. }
  254. // Otherwise they didn't select a database!!
  255. else {
  256. form_set_error('DB', t('No database selected. Either choose a database '
  257. . 'from the list or upload one of your own.'));
  258. }
  259. }
  260. // Otherwise there was no file uploaded
  261. // Check if there was a database choosen from the list instead
  262. elseif (!empty($form_state['values']['SELECT_DB'])) {
  263. $form_state['dbFlag'] = 'blastdb';
  264. }
  265. // Otherwise they didn't select a database!!
  266. else {
  267. form_set_error('DB', t('No database selected. Either choose a database '
  268. . 'from the list or upload one of your own.'));
  269. }
  270. // Validate Advanced Options
  271. //---------------------------
  272. $advanced_options_form_validate = 'blast_ui_' . $blast_program . '_advanced_options_form_validate';
  273. if (function_exists($advanced_options_form_validate)) {
  274. call_user_func_array(
  275. $advanced_options_form_validate,
  276. array(&$form, $form_state)
  277. );
  278. }
  279. }
  280. /**
  281. * Process the user options submitted via the blast program form.
  282. *
  283. * @see blast_ui_per_blast_program_form().
  284. */
  285. function blast_ui_per_blast_program_form_submit($form, &$form_state) {
  286. $error = FALSE;
  287. $blast_program = $form_state['values']['blast_program'];
  288. if ($form_state['values']['db_type'] == 'nucleotide') {
  289. $mdb_type = 'nucl';
  290. $file_suffix = '.nsq';
  291. }
  292. else {
  293. $mdb_type = 'prot';
  294. $file_suffix = '.psq';
  295. }
  296. // If the query was submitted via the texrfield then create a file containing it
  297. if ( isset($form_state['qFlag']) ) {
  298. if ( $form_state['qFlag'] == 'seqQuery' ) {
  299. $seq_content = $form_state['values']['FASTA'];
  300. $query = '/tmp/' . date('YMd_His') . '_query.fasta';
  301. file_put_contents ( $query , $seq_content);
  302. }
  303. elseif ( $form_state['qFlag'] == 'upQuery' ) {
  304. $query = $form_state['upQuery_path'];
  305. }
  306. }
  307. // If the BLAST database was uploaded then use it to run the BLAST
  308. if ( $form_state['dbFlag'] == 'upDB') {
  309. // Since we only support using the -db flag (not -subject) we need to create a
  310. // blast database for the FASTA uploaded.
  311. // NOTE: We can't support subject because we need to generate the ASN.1+ format
  312. // to provide multiple download type options from the same BLAST
  313. $blastdb_with_path = $form_state['upDB_path'];
  314. $result = NULL;
  315. exec("makeblastdb -in $blastdb_with_path -dbtype $mdb_type -parse_seqids 2>&1", $result);
  316. // Check that the BLAST database was made correctly.
  317. $result = implode('<br />', $result);
  318. if (preg_match('/Error/', $result)) {
  319. drupal_set_message('Unable to generate a BLAST database from your uploaded
  320. FASTA sequence. Please check that your file is a valid FASTA file and that if
  321. your sequence headers include pipes (i.e.: | ) they adhere to '
  322. . l('NCBI standards.', 'http://www.ncbi.nlm.nih.gov/books/NBK21097/table/A632/?report=objectonly', array('attributes' => array('target' => '_blank'))),
  323. 'error'
  324. );
  325. $error = TRUE;
  326. }
  327. }
  328. // Otherwise, we are using one of the website provided BLAST databases so form the
  329. // BLAST command accordingly
  330. elseif ($form_state['dbFlag'] == 'blastdb') {
  331. $selected_db = $form_state['values']['SELECT_DB'];
  332. $blastdb_node = node_load($selected_db);
  333. $blastdb_with_path = $blastdb_node->db_path;
  334. }
  335. // Now let each program process it's own advanced options.
  336. $advanced_options = array();
  337. $advanced_options_form_submit = 'blast_ui_' . $blast_program . '_advanced_options_form_submit';
  338. if (function_exists($advanced_options_form_submit)) {
  339. $advanced_options = call_user_func_array(
  340. $advanced_options_form_submit,
  341. array($form, &$form_state)
  342. );
  343. }
  344. // Actually submit the BLAST Tripal Job
  345. // NOTE: Tripal jobs needs to be executed from the command-line before it will be run!!
  346. $blastdb_with_suffix = $blastdb_with_path . $file_suffix;
  347. if (is_readable($blastdb_with_suffix)) {
  348. global $user;
  349. $output_filestub = date('YMd_His');
  350. $job_args = array(
  351. 'program' => $blast_program,
  352. 'query' => $query,
  353. 'database' => $blastdb_with_path,
  354. 'output_filename' => $output_filestub,
  355. 'options' => $advanced_options
  356. );
  357. $job_id = tripal_add_job(
  358. t('BLAST (@program): @query', array('@program' => $blast_program, '@query' => $query)),
  359. 'blast_job',
  360. 'run_BLAST_tripal_job',
  361. $job_args,
  362. $user->uid
  363. );
  364. //@deepaksomanadh Persist the important data for edit and resubmit
  365. $job_data = variable_get('job_data', '');
  366. $seq_rows = explode(PHP_EOL, $seq_content);
  367. foreach($seq_rows as $row) {
  368. if(strpos($row, ">") !== FALSE) {
  369. $query_def[] = ltrim($row, ">");
  370. }
  371. }
  372. $job_data[$job_id] =
  373. array(
  374. 'program' => $blast_program,
  375. 'job_url' => current_path(),
  376. 'fasta' => $seq_content,
  377. 'query_def' => $query_def,
  378. 'db_name' => $blastdb_node->db_name,
  379. 'db_option' => $selected_db,
  380. 'options' => $advanced_options,
  381. );
  382. variable_set('job_data', $job_data);
  383. //@deepaksomanadh create session and save the recent jobs in respective session
  384. if (session_status() === PHP_SESSION_NONE){
  385. session_start();
  386. }
  387. $sid = session_id();
  388. $job_encode_id = base64_encode($job_id);
  389. $job_url = "blast/report/$job_encode_id";
  390. $all_jobs = $_SESSION['all_jobs'];
  391. $session_jobs = $all_jobs[$sid];
  392. $session_jobs[$job_id] = array(
  393. 'job_output_url'=> $job_url,
  394. 'query_defs' => $query_def,
  395. 'program' => $blast_program,
  396. );
  397. $all_jobs[$sid] = $session_jobs;
  398. $_SESSION['all_jobs'] = $all_jobs;
  399. tripal_jobs_launch(1, $job_id);
  400. //Encode the job_id
  401. $job_encode_id = base64_encode($job_id);
  402. // Redirect to the BLAST results page
  403. drupal_goto("blast/report/$job_encode_id");
  404. }
  405. // We check if $error is set to TRUE because if so then the error has already
  406. // been reported.
  407. elseif (!$error) {
  408. $dbfile_uploaded_msg = ($form_state['dbFlag'] == 'upDB') ? 'The BLAST database was submitted via user upload.' : 'Existing BLAST Database was chosen';
  409. tripal_report_error(
  410. 'blast_ui',
  411. TRIPAL_ERROR,
  412. "BLAST database %db unaccessible. $dbfile_uploaded_msg",
  413. array('%db' => $blastdb_with_path)
  414. );
  415. drupal_set_message('BLAST database unaccessible. Please contact the site administrator.','error');
  416. }
  417. }