blast_ui.form_advanced_options.inc 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256
  1. <?php
  2. /**
  3. * @file
  4. * Contains helper functions related to program-specific advanced options.
  5. */
  6. /**
  7. * @section
  8. * BLASTn: Search a nucleotide database using a nucleotide query.
  9. * ----------------------------------------------------------------------------
  10. */
  11. /**
  12. * Adds the BLASTn Advanced Options to the passed in form.
  13. *
  14. * This form function is meant to be called within another form definition.
  15. *
  16. * @param $form
  17. * The form the advanced options should be added to. This form already
  18. * contains a $form['ALG'] fieldset meant to contain the advanced options.
  19. * @param $formstate
  20. * The current state fo the form passed in as $form.
  21. */
  22. function blast_ui_blastn_advanced_options_form(&$form, $form_state) {
  23. // Edit and Resubmit functionality.
  24. // We want to pull up the details from a previous blast and fill them in as defaults
  25. // for this blast.
  26. if (isset($form_state['prev_blast'])) {
  27. $defaults = _get_default_values($form_state['prev_blast']->options, 'blastn');
  28. }
  29. else {
  30. $defaults = _get_default_values(array(), 'blastn');
  31. }
  32. // General parameters
  33. //.........................
  34. $form['ALG']['GParam'] = array(
  35. '#type' => 'fieldset',
  36. '#title' => t('General parameters'),
  37. '#collapsible' => FALSE,
  38. );
  39. $form['ALG']['GParam']['maxTarget'] = array(
  40. '#type' => 'select',
  41. '#title' => t('Max target sequences:'),
  42. '#options' => _get_max_target('blastn'),
  43. '#default_value' => $defaults['max_target_seqs'],
  44. '#description' => t('Select the maximum number of unique target sequences per query sequence to show results for.'),
  45. );
  46. $form['ALG']['GParam']['eVal'] = array(
  47. '#type' => 'textfield',
  48. '#title' => t('e-Value (Expected Threshold)'),
  49. '#default_value' => $defaults['evalue'],
  50. '#size' => 12,
  51. '#maxlength' => 20,
  52. '#description' => t('Expected number of chance matches in a random model. This number should be give in a decimal format. <a href="https://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml#expect" target="_blank">More Information</a> | <a href="https://www.youtube.com/watch?v=nO0wJgZRZJs" target="_blank">Expect value video tutorial</a>'),
  53. );
  54. $form['ALG']['GParam']['wordSize'] = array(
  55. '#type' => 'select',
  56. '#title' => t('Word size:'),
  57. '#options' => _get_word_size('blastn'),
  58. '#default_value' => $defaults['word_size'],
  59. '#description' => t('The length of the seed that initiates an alignment'),
  60. );
  61. // Scoring parameters
  62. //.........................
  63. $form['ALG']['SParam'] = array(
  64. '#type' => 'fieldset',
  65. '#title' => t('Scoring parameters'),
  66. '#collapsible' => FALSE,
  67. );
  68. $form['ALG']['SParam']['M&MScores'] = array(
  69. '#type' => 'select',
  70. '#title' => t('Match/Mismatch Scores:'),
  71. '#options' => _get_match_mismatch('blastn'),
  72. '#default_value' => $defaults['matchmiss'],
  73. '#description' => t('Reward and penalty for matching and mismatching bases.'),
  74. '#ajax' => array(
  75. 'callback' => 'gap_cost_callback',
  76. 'wrapper' => 'gap_cost_wrapper',
  77. ),
  78. );
  79. $m_m_set = $defaults['matchmiss'];
  80. if (isset($form_state['values']) && isset($form_state['values']['M&MScores'])) {
  81. $m_m_set = $form_state['values']['M&MScores'];
  82. }
  83. $form['ALG']['SParam']['gapCost'] = array(
  84. '#type' => 'select',
  85. '#title' => t('Gap Costs:'),
  86. '#options' => _get_gap_options('blastn', $m_m_set),
  87. '#default_value' => $defaults['gap'],
  88. '#description' => t('Cost to create and extend a gap in an alignment.'),
  89. '#prefix' => '<div id="gap_cost_wrapper">',
  90. '#suffix' => '</div>',
  91. );
  92. }
  93. /**
  94. * Validate the advanced options provided by the BLASTn form above.
  95. *
  96. * @see blast_ui_blastn_advanced_options_form().
  97. */
  98. function blast_ui_blastn_advanced_options_form_validate($form, $form_state) {
  99. // Ensure that our textfields are what we expect them to be since we will
  100. // use them to generate the BLAST command.
  101. // First up, e-value. We expect the evalue to be a very small yet still
  102. // positive number. It may be given in scientific notation which is
  103. // luckily supported by is_numeric().
  104. if (!is_numeric($form_state['values']['eVal'])) {
  105. form_set_error('eVal', 'The e-value should be a very small number (scientific notation is supported). For example, <em>0.001</em> or, even better, <em>1e-10</em>.');
  106. }
  107. }
  108. /**
  109. * Processed the advanced options provided by the BLASTn form above.
  110. *
  111. * @see blast_ui_blastn_advanced_options_form().
  112. */
  113. function blast_ui_blastn_advanced_options_form_submit($form, $form_state) {
  114. $eVal = $form_state['values']['eVal'];
  115. $trgtKey = $form_state['values']['maxTarget'];
  116. $numAlign = $form['ALG']['GParam']['maxTarget']['#options'][$trgtKey];
  117. $wsKey = $form_state['values']['wordSize'];
  118. $wordSize = $form['ALG']['GParam']['wordSize']['#options'][$wsKey];
  119. // Expand Gap Cost key into open and extend penalties
  120. $gap = _set_gap($form_state['values']['gapCost']);
  121. // Expand Match/Mismatch option into penalty/reward values
  122. $m_m = _set_match_mismatch($form_state['values']['M&MScores']);
  123. return array(
  124. 'max_target_seqs' => $numAlign,
  125. 'evalue' => $eVal,
  126. 'word_size' => $wordSize,
  127. 'gapopen' => $gap['gapOpen'],
  128. 'gapextend' => $gap['gapExtend'],
  129. 'penalty' => $m_m['penalty'],
  130. 'reward' => $m_m['reward'],
  131. );
  132. }
  133. /**
  134. * @section
  135. * BLASTx: Search protein database using a translated nucleotide query.
  136. * ----------------------------------------------------------------------------
  137. */
  138. /**
  139. * Adds the BLASTx Advanced Options to the passed in form.
  140. *
  141. * This form function is meant to be called within another form definition.
  142. *
  143. * @param $form
  144. * The form the advanced options should be added to. This form already
  145. * contains a $form['ALG'] fieldset meant to contain the advanced options.
  146. * @param $formstate
  147. * The current state fo the form passed in as $form.
  148. */
  149. function blast_ui_blastx_advanced_options_form(&$form, $form_state) {
  150. // Edit and Resubmit functionality.
  151. // We want to pull up the details from a previous blast and fill them in as defaults
  152. // for this blast.
  153. if (isset($form_state['prev_blast'])) {
  154. $defaults = _get_default_values($form_state['prev_blast']->options, 'blastx');
  155. }
  156. else {
  157. $defaults = _get_default_values(array(), 'blastx');
  158. }
  159. $form['ALG']['GParam'] = array(
  160. '#type' => 'fieldset',
  161. '#title' => t('General parameters'),
  162. '#collapsible' => FALSE,
  163. );
  164. $form['ALG']['GParam']['maxTarget'] = array(
  165. '#type' => 'select',
  166. '#title' => t('Max target sequences:'),
  167. '#options' => _get_max_target('blastx'),
  168. '#default_value' => $defaults['max_target_seqs'],
  169. '#description' => t('Select the maximum number of aligned sequences to display'),
  170. );
  171. $form['ALG']['GParam']['eVal'] = array(
  172. '#type' => 'textfield',
  173. '#title' => t('e-Value (Expected Threshold)'),
  174. '#default_value' => $defaults['evalue'],
  175. '#size' => 12,
  176. '#maxlength' => 20,
  177. '#description' => t('Expected number of chance matches in a random model. This number should be give in a decimal format. <a href="https://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml#expect" target="_blank">More Information</a> | <a href="https://www.youtube.com/watch?v=nO0wJgZRZJs" target="_blank">Expect value vedio tutorial</a>'),
  178. );
  179. $form['ALG']['GParam']['wordSize'] = array(
  180. '#type' => 'select',
  181. '#title' => t('Word size:'),
  182. '#options' => _get_word_size('blastx'),
  183. '#default_value' => $defaults['word_size'],
  184. '#description' => t('The length of the seed that initiates an alignment'),
  185. );
  186. // Scoring parameters
  187. //.........................
  188. $form['ALG']['SParam'] = array(
  189. '#type' => 'fieldset',
  190. '#title' => t('Scoring parameters'),
  191. '#collapsible' => FALSE,
  192. );
  193. $matrix_options = _get_matrix_options();
  194. $form['ALG']['SParam']['Matrix'] = array(
  195. '#type' => 'select',
  196. '#title' => 'Matrix',
  197. '#options' => $matrix_options,
  198. '#default_value' => $defaults['matrix'],
  199. '#description' => t('Assigns a score for aligning pairs of residues, and determines overall alignment score..'),
  200. '#ajax' => array(
  201. 'callback' => 'matrix_gap_cost_callback',
  202. 'wrapper' => 'gap_cost_wrapper',
  203. ),
  204. );
  205. $matrix_set = $defaults['matrix'];
  206. if (isset($form_state['values']) && isset($form_state['values']['Matrix'])) {
  207. $matrix_set = $form_state['values']['Matrix'];
  208. }
  209. $form['ALG']['SParam']['gapCost'] = array(
  210. '#type' => 'select',
  211. '#title' => t('Gap Costs:'),
  212. '#prefix' => '<div id="gap_cost_wrapper">',
  213. '#suffix' => '</div>',
  214. '#options' => _get_gap_for_matrix($matrix_set),
  215. '#default_value' => $defaults['gap'],
  216. '#description' => t('Cost to create and extend a gap in an alignment.'),
  217. );
  218. }
  219. /**
  220. * Validate the advanced options provided by the BLASTn form above.
  221. *
  222. * @see blast_ui_blastx_advanced_options_form().
  223. */
  224. function blast_ui_blastx_advanced_options_form_validate($form, $form_state) {
  225. // Ensure that our textfields are what we expect them to be since we will
  226. // use them to generate the BLAST command.
  227. // First up, e-value. We expect the evalue to be a very small yet still
  228. // positive number. It may be given in scientific notation which is
  229. // luckily supported by is_numeric().
  230. if (!is_numeric($form_state['values']['eVal'])) {
  231. form_set_error('eVal', 'The e-value should be a very small number (scientific notation is supported). For example, <em>0.001</em> or, even better, <em>1e-10</em>.');
  232. }
  233. }
  234. /**
  235. * Processed the advanced options provided by the BLASTx form above.
  236. *
  237. * @see blast_ui_blastx_advanced_options_form().
  238. */
  239. function blast_ui_blastx_advanced_options_form_submit($form, $form_state) {
  240. // Same as blastp form submit
  241. return blast_ui_blastp_advanced_options_form_submit($form, $form_state);
  242. }
  243. /**
  244. * @section
  245. * BLASTp: Search protein database using a protein query.
  246. * ----------------------------------------------------------------------------
  247. */
  248. /**
  249. * Adds the BLASTp Advanced Options to the passed in form.
  250. *
  251. * This form function is meant to be called within another form definition.
  252. *
  253. * @param $form
  254. * The form the advanced options should be added to. This form already
  255. * contains a $form['ALG'] fieldset meant to contain the advanced options.
  256. * @param $formstate
  257. * The current state fo the form passed in as $form.
  258. */
  259. function blast_ui_blastp_advanced_options_form(&$form, $form_state) {
  260. // Edit and Resubmit functionality.
  261. // We want to pull up the details from a previous blast and fill them in as defaults
  262. // for this blast.
  263. if (isset($form_state['prev_blast'])) {
  264. $defaults = _get_default_values($form_state['prev_blast']->options, 'blastp');
  265. }
  266. else {
  267. $defaults = _get_default_values(array(), 'blastp');
  268. }
  269. //General parameters
  270. $form['ALG']['GParam'] = array(
  271. '#type' => 'fieldset',
  272. '#title' => t('General parameters'),
  273. '#collapsible' => FALSE,
  274. );
  275. $form['ALG']['GParam']['maxTarget'] = array(
  276. '#type' => 'select',
  277. '#title' => t('Max target sequences:'),
  278. '#options' => _get_max_target('blastp'),
  279. '#default_value' => $defaults['max_target_seqs'],
  280. '#description' => t('Select the maximum number of aligned sequences to display'),
  281. );
  282. $form['ALG']['GParam']['eVal'] = array(
  283. '#type' => 'textfield',
  284. '#title' => t('e-value(Expect threshold)'),
  285. '#default_value' => $defaults['evalue'],
  286. '#size' => 12,
  287. '#maxlength' => 20,
  288. '#description' => t('Expected number of chance matches in a random model.'),
  289. );
  290. $form['ALG']['GParam']['wordSize'] = array(
  291. '#type' => 'select',
  292. '#title' => t('Word size:'),
  293. '#options' => _get_word_size('blastp'),
  294. '#default_value' => $defaults['word_size'],
  295. '#description' => t('The length of the seed that initiates an alignment'),
  296. );
  297. // Scoring parameters
  298. $form['ALG']['SParam'] = array(
  299. '#type' => 'fieldset',
  300. '#title' => t('Scoring parameters'),
  301. '#collapsible' => FALSE,
  302. );
  303. $matrix_options = _get_matrix_options();
  304. $form['ALG']['SParam']['Matrix'] = array(
  305. '#type' => 'select',
  306. '#title' => 'Matrix',
  307. '#options' => $matrix_options,
  308. '#default_value' => $defaults['matrix'],
  309. '#description' => t('Assigns a score for aligning pairs of residues, and determines overall alignment score..'),
  310. '#ajax' => array(
  311. 'callback' => 'matrix_gap_cost_callback',
  312. 'wrapper' => 'gap_cost_wrapper',
  313. ),
  314. );
  315. $matrix_set = $defaults['matrix'];
  316. if (isset($form_state['values']) && isset($form_state['values']['Matrix'])) {
  317. $matrix_set = $form_state['values']['Matrix'];
  318. }
  319. $form['ALG']['SParam']['gapCost'] = array(
  320. '#type' => 'select',
  321. '#title' => t('Gap Costs:'),
  322. '#prefix' => '<div id="gap_cost_wrapper">',
  323. '#suffix' => '</div>',
  324. '#options' => _get_gap_for_matrix($matrix_set),
  325. '#default_value' => $defaults['gap'],
  326. '#description' => t('Cost to create and extend a gap in an alignment.'),
  327. );
  328. }
  329. /**
  330. * Validate the advanced options provided by the BLASTp form above.
  331. *
  332. * @see blast_ui_blastp_advanced_options_form().
  333. */
  334. function blast_ui_blastp_advanced_options_form_validate($form, $form_state) {
  335. // Ensure that our textfields are what we expect them to be since we will
  336. // use them to generate the BLAST command.
  337. // First up, e-value. We expect the evalue to be a very small yet still
  338. // positive number. It may be given in scientific notation which is
  339. // luckily supported by is_numeric().
  340. if (!is_numeric($form_state['values']['eVal'])) {
  341. form_set_error('eVal', 'The e-value should be a very small number (scientific notation is supported). For example, <em>0.001</em> or, even better, <em>1e-10</em>.');
  342. }
  343. }
  344. /**
  345. * Processed the advanced options provided by the BLASTp form above.
  346. *
  347. * @see blast_ui_blastp_advanced_options_form().
  348. */
  349. function blast_ui_blastp_advanced_options_form_submit($form, $form_state) {
  350. $eVal = $form_state['values']['eVal'];
  351. $trgtKey = $form_state['values']['maxTarget'];
  352. $numAlign = $form['ALG']['GParam']['maxTarget']['#options'][$trgtKey];
  353. $wsKey = $form_state['values']['wordSize'];
  354. $wordSize = $form['ALG']['GParam']['wordSize']['#options'][$wsKey];
  355. //$qRange = $form_state['values']['qRange'];
  356. // Expand Gap Cost key into open and extend penalties
  357. $matrix = $form_state['values']['Matrix'];
  358. $gapKey = $form_state['values']['gapCost'];
  359. $gap = _set_gap($gapKey);
  360. $gapOpen = $gap['gapOpen'];
  361. $gapExtend = $gap['gapExtend'];
  362. return array(
  363. 'max_target_seqs' => $numAlign,
  364. 'evalue' => $eVal,
  365. 'word_size' => $wordSize,
  366. 'gapopen' => $gapOpen,
  367. 'gapextend' => $gapExtend,
  368. //'culling_limit' => $qRange,
  369. 'matrix' => $matrix,
  370. );
  371. }//blast_ui_blastp_advanced_options_form_submit
  372. /**
  373. * @section
  374. * tBLASTn: Search translated nucleotide database using a protein query.
  375. * ----------------------------------------------------------------------------
  376. */
  377. /**
  378. * Adds the tBLASTn Advanced Options to the passed in form.
  379. *
  380. * This form function is meant to be called within another form definition.
  381. *
  382. * @param $form
  383. * The form the advanced options should be added to. This form already
  384. * contains a $form['ALG'] fieldset meant to contain the advanced options.
  385. * @param $formstate
  386. * The current state fo the form passed in as $form.
  387. */
  388. function blast_ui_tblastn_advanced_options_form(&$form, $form_state) {
  389. // Edit and Resubmit functionality.
  390. // We want to pull up the details from a previous blast and fill them in as defaults
  391. // for this blast.
  392. if (isset($form_state['prev_blast'])) {
  393. $defaults = _get_default_values($form_state['prev_blast']->options, 'tblastn');
  394. }
  395. else {
  396. $defaults = _get_default_values(array(), 'tblastn');
  397. }
  398. $form['ALG']['GParam'] = array(
  399. '#type' => 'fieldset',
  400. '#title' => t('General parameters'),
  401. '#collapsible' => FALSE,
  402. );
  403. $form['ALG']['GParam']['maxTarget'] = array(
  404. '#type' => 'select',
  405. '#title' => t('Max target sequences:'),
  406. '#options' => _get_max_target('tblastn'),
  407. '#default_value' => $defaults['max_target_seqs'],
  408. '#description' => t('Select the maximum number of aligned sequences to display'),
  409. );
  410. $form['ALG']['GParam']['eVal'] = array(
  411. '#type' => 'textfield',
  412. '#title' => t('e-Value (Expected Threshold)'),
  413. '#default_value' => $defaults['evalue'],
  414. '#size' => 12,
  415. '#maxlength' => 20,
  416. '#description' => t('Expected number of chance matches in a random model. This number should be give in a decimal format. <a href="https://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml#expect" target="_blank">More Information</a> | <a href="https://www.youtube.com/watch?v=nO0wJgZRZJs" target="_blank">Expect value vedio tutorial</a>'),
  417. );
  418. $form['ALG']['GParam']['wordSize'] = array(
  419. '#type' => 'select',
  420. '#title' => t('Word size:'),
  421. '#options' => _get_word_size('tblastn'),
  422. '#default_value' => $defaults['word_size'],
  423. '#description' => t('The length of the seed that initiates an alignment'),
  424. );
  425. // Scoring parameters
  426. //.........................
  427. $form['ALG']['SParam'] = array(
  428. '#type' => 'fieldset',
  429. '#title' => t('Scoring parameters'),
  430. '#collapsible' => FALSE,
  431. );
  432. $matrix_options = _get_matrix_options();
  433. $form['ALG']['SParam']['Matrix'] = array(
  434. '#type' => 'select',
  435. '#title' => 'Matrix',
  436. '#options' => $matrix_options,
  437. '#default_value' => $defaults['matrix'],
  438. '#description' => t('Assigns a score for aligning pairs of residues, and determines overall alignment score.'),
  439. '#ajax' => array(
  440. 'callback' => 'matrix_gap_cost_callback',
  441. 'wrapper' => 'gap_cost_wrapper',
  442. ),
  443. );
  444. $matrix_set = $defaults['matrix'];
  445. if (isset($form_state['values']) && isset($form_state['values']['Matrix'])) {
  446. $matrix_set = $form_state['values']['Matrix'];
  447. }
  448. $form['ALG']['SParam']['gapCost'] = array(
  449. '#type' => 'select',
  450. '#title' => t('Gap Costs:'),
  451. '#prefix' => '<div id="gap_cost_wrapper">',
  452. '#suffix' => '</div>',
  453. '#options' => _get_gap_for_matrix($matrix_set),
  454. '#default_value' => $defaults['gap'],
  455. '#description' => t('Cost to create and extend a gap in an alignment.'),
  456. );
  457. }
  458. /**
  459. * Validate the advanced options provided by the tBLASTn form above.
  460. *
  461. * @see blast_ui_tblastn_advanced_options_form().
  462. */
  463. function blast_ui_tblastn_advanced_options_form_validate($form, $form_state) {
  464. // Ensure that our textfields are what we expect them to be since we will
  465. // use them to generate the BLAST command.
  466. // First up, e-value. We expect the evalue to be a very small yet still
  467. // positive number. It may be given in scientific notation which is
  468. // luckily supported by is_numeric().
  469. if (!is_numeric($form_state['values']['eVal'])) {
  470. form_set_error('eVal', 'The e-value should be a very small number (scientific notation is supported). For example, <em>0.001</em> or, even better, <em>1e-10</em>.');
  471. }
  472. }
  473. /**
  474. * Processed the advanced options provided by the tBLASTn form above.
  475. *
  476. * @see blast_ui_tblastn_advanced_options_form().
  477. */
  478. function blast_ui_tblastn_advanced_options_form_submit($form, $form_state) {
  479. return blast_ui_blastp_advanced_options_form_submit($form, $form_state);
  480. }
  481. /**
  482. * Fill the matrix dropdown list with appropriate options
  483. *
  484. * @return
  485. * An array consisting of matrices name for the first dropdown list
  486. */
  487. function _get_matrix_options() {
  488. return drupal_map_assoc(array(
  489. t('PAM30'),
  490. t('PAM70'),
  491. t('PAM250'),
  492. t('BLOSUM80'),
  493. t('BLOSUM62'),
  494. t('BLOSUM45'),
  495. t('BLOSUM50'),
  496. t('BLOSUM90'),
  497. ));
  498. }
  499. /**
  500. * Fill the gap penalty dropdown list with appropriate options given selected
  501. * matrix
  502. *
  503. * @return
  504. * An array containing open and extension gap values for the chosen matrix (to
  505. * fill the second dropdown list)
  506. */
  507. function _get_gap_for_matrix($key = '') {
  508. switch ($key) {
  509. case 'PAM30':
  510. return _make_gaps(array('7_2', '6_2', '5_2', '10_1', '8_1', '13_3', '15_3', '14_1',
  511. '14_2')
  512. );
  513. case 'PAM70':
  514. return _make_gaps(array('8_2', '7_2', '6_2', '11_1', '10_1', '9_1', '12_3', '11_2'));
  515. case 'PAM250':
  516. return _make_gaps(array('15_3', '14_3', '13_3', '12_3', '11_3', '17_2', '16_2',
  517. '15_2', '14_2', '13_2', '21_1', '20_1', '19_1', '18_1',
  518. '17_1')
  519. );
  520. case 'BLOSUM80':
  521. return _make_gaps(array('8_2', '7_2', '6_2', '11_1', '10_1', '9_1'));
  522. case 'BLOSUM62':
  523. return _make_gaps(array('11_2', '10_2', '9_2', '8_2', '7_2', '6_2', '13_1',
  524. '12_1', '11_1', '10_1', '9_1')
  525. );
  526. case 'BLOSUM45':
  527. return _make_gaps(array('13_3', '12_3', '11_3', '10_3', '15_2', '14_2', '13_2',
  528. '12_2', '19_1', '18_1', '17_1', '16_1')
  529. );
  530. case 'BLOSUM50':
  531. return _make_gaps(array('13_3', '12_3', '11_3', '10_3', '9_3', '16_2', '15_2',
  532. '14_2', '13_2', '12_2', '19_1', '18_1', '17_1', '16_1',
  533. '15_1')
  534. );
  535. case 'BLOSUM90':
  536. return _make_gaps(array('9_2', '8_2', '7_2', '6_2', '11_1', '10_1', '9_1'));
  537. }
  538. }//_get_gap_for_matrix
  539. /**
  540. * Respond to Ajax dropdown call
  541. */
  542. function matrix_gap_cost_callback($form, &$form_state) {
  543. return $form['B']['ALG']['SParam']['gapCost'];
  544. }
  545. /**
  546. * Get default form values; may come from saved job data if user is re-running
  547. * a previous job.
  548. */
  549. function _get_default_values($options, $program) {
  550. // restore previous values or set to default
  551. $max_target = (isset($options['max_target_seqs']))
  552. ? $options['max_target_seqs'] : 500;
  553. $short_queries = (isset($options['shortQueries']))
  554. ? $options['shortQueries'] : TRUE;
  555. $evalue = (isset($options['evalue']))
  556. ? $options['evalue'] : variable_get('eVal', 0.001);
  557. $word_size = (isset($options['word_size']))
  558. ? $options['word_size'] : 11;
  559. // $qRange = (isset($options['culling_limit']))
  560. // ? $options['culling_limit'] : variable_get('qRange', 0);
  561. // match/mismatch
  562. $matchmiss = 0;
  563. $reward = (isset($options['reward']))
  564. ? $options['reward'] : 1;
  565. $penalty = (isset($options['penalty']))
  566. ? $options['penalty'] : -2;
  567. if ($reward == 1) {
  568. switch ($penalty) {
  569. case -1:
  570. $matchmiss = 5;
  571. break;
  572. case -2:
  573. $matchmiss = 0;
  574. break;
  575. case -3:
  576. $matchmiss = 1;
  577. break;
  578. case -4:
  579. $matchmiss = 2;
  580. break;
  581. }
  582. }
  583. else {
  584. if ($reward == 2) {
  585. $matchmiss = 3;
  586. }
  587. else {
  588. if ($reward == 3) {
  589. $matchmiss = 4;
  590. }
  591. else {
  592. if ($reward == 4) {
  593. $matchmiss = 5;
  594. }
  595. }
  596. }
  597. }
  598. // gap
  599. if (isset($options['gapopen']) && isset($options['gapextend'])) {
  600. $gapopen = $options['gapopen'];
  601. $gapextend = $options['gapextend'];
  602. }
  603. else {
  604. switch ($program) {
  605. case 'blastn':
  606. $gapopen = 5;
  607. $gapextend = 2;
  608. break;
  609. case 'blastp':
  610. case 'blastx':
  611. case 'tblastn':
  612. $gapopen = 11;
  613. $gapextend = 1;
  614. break;
  615. }
  616. }
  617. $gap = $gapopen.'_'.$gapextend;
  618. // matrix
  619. $matrix = (isset($options['matrix']))
  620. ? $options['matrix'] : 'BLOSUM62';
  621. // all done
  622. return array(
  623. 'max_target_seqs' => $max_target,
  624. 'short_queries' => $short_queries,
  625. 'word_size' => $word_size,
  626. 'evalue' => $evalue,
  627. 'matchmiss' => $matchmiss,
  628. 'gap' => $gap,
  629. // 'qRange' => $qRange,
  630. 'matrix' => $matrix,
  631. );
  632. }//_get_default_values
  633. /**
  634. * Get a list of options for the max_target_seq blast option.
  635. *
  636. * The options are the same for all programs
  637. * and describe the maximum number of aligned sequences to keep.
  638. */
  639. function _get_max_target($which) {
  640. switch ($which) {
  641. case 'blastn':
  642. case 'blastx':
  643. case 'blastp':
  644. case 'tblastn':
  645. return array(
  646. 0 => t(' '),
  647. 10 => t('10'),
  648. 50 => t('50'),
  649. 100 => t('100'),
  650. 250 => t('250'),
  651. 500 => t('500'),
  652. 1000 => t('1000'),
  653. 5000 => t('5000'),
  654. 10000 => t('10000'),
  655. 20000 => t('20000'),
  656. );
  657. }//switch
  658. }
  659. /**
  660. * Get a list of options for work size.
  661. */
  662. function _get_word_size($which) {
  663. switch ($which) {
  664. case 'blastn':
  665. return array(
  666. 7 => t('7'),
  667. 11 => t('11'),
  668. 15 => t('15'),
  669. 16 => t('16'),
  670. 20 => t('20'),
  671. 24 => t('24'),
  672. 28 => t('28'),
  673. 32 => t('32'),
  674. 48 => t('48'),
  675. 64 => t('64'),
  676. 128 => t('128'),
  677. 256 => t('256'),
  678. );
  679. case 'blastx':
  680. case 'blastp':
  681. case 'tblastn':
  682. return array(
  683. // 2 => t('2'),
  684. 3 => t('3'),
  685. 6 => t('6'),
  686. );
  687. }//switch
  688. }
  689. /**
  690. * Get a list of options for match/mismatch ratio.
  691. */
  692. function _get_match_mismatch($which) {
  693. switch ($which) {
  694. case 'blastn':
  695. return array(
  696. 0 => t('1,-2'),
  697. 1 => t('1,-3'),
  698. 2 => t('1,-4'),
  699. 3 => t('2,-3'),
  700. 4 => t('4,-5'),
  701. 5 => t('1,-1'),
  702. );
  703. }//switch
  704. }
  705. /**
  706. * @param $which - the blast program being run
  707. * @param $m_m - the match mismatch scores.
  708. *
  709. * @return array
  710. */
  711. function _get_gap_options($which, $m_m) {
  712. switch ($which) {
  713. case 'blastn':
  714. switch ($m_m) {
  715. case 0: //1, -2
  716. return _make_gaps(array('5_2', '2_2', '1_2', '0_2', '3_1', '2_1', '1_1'));
  717. case 1: //1, -3
  718. return _make_gaps(array('5_2', '2_2', '1_2', '1_2', '0_2', '2_1', '1_1'));
  719. case 2: // 1, -4
  720. return _make_gaps(array('5_2', '1_2', '0_2', '2_1', '1_1'));
  721. case 3: //2, -3
  722. return _make_gaps(array('4_4', '2_4', '0_4', '3_3', '6_2', '5_2', '4_2', '2_2'));
  723. case 4: //4, -5
  724. return _make_gaps(array('12_8', '6_5', '5_5', '4_5', '3_5'));
  725. case 5: //1, -1
  726. return _make_gaps(array('5_2', '3_2', '2_2', '1_2', '0_2', '4_1', '3_1', '2_1'));
  727. }
  728. }
  729. }
  730. /**
  731. * @param $gap_array - array of gap abbreviations
  732. *
  733. * @return array
  734. */
  735. function _make_gaps($gap_array) {
  736. $a = array();
  737. foreach ($gap_array as $g) {
  738. $parts = explode('_', $g);
  739. $a[$g] = t("Existence: $parts[0] Extension: $parts[1]");
  740. }
  741. return $a;
  742. }
  743. /**
  744. * Translate gap abbreviation into blast gap open and extend costs.
  745. * @param $gap_key - a gap open/extend abbreviation
  746. */
  747. function _set_gap($gap_key) {
  748. $parts = explode('_', $gap_key);
  749. return array('gapOpen' => $parts[0], 'gapExtend' => $parts[1]);
  750. }
  751. /**
  752. * Translate mismatch/match ratio option into blast penalty/reward options.
  753. */
  754. function _set_match_mismatch($m_m) {
  755. switch ($m_m) {
  756. case 0:
  757. $penalty = -2;
  758. $reward = 1;
  759. break;
  760. case 1:
  761. $penalty = -3;
  762. $reward = 1;
  763. break;
  764. case 2:
  765. $penalty = -4;
  766. $reward = 1;
  767. break;
  768. case 3:
  769. $penalty = -3;
  770. $reward = 2;
  771. break;
  772. case 4:
  773. $penalty = -5;
  774. $reward = 4;
  775. break;
  776. case 5:
  777. $penalty = -1;
  778. $reward = 1;
  779. break;
  780. }//switch
  781. return array('penalty' => $penalty, 'reward' => $reward);
  782. }
  783. /**
  784. * Get gap values based on matrix and selected gap "key"
  785. */
  786. function _set_protein_gap($matrix, $gapKey) {
  787. switch ($matrix) {
  788. case 'PAM30':
  789. switch ($gapKey) {
  790. case 0:
  791. $gapOpen = 7;
  792. $gapExtend = 2;
  793. break;
  794. case 1:
  795. $gapOpen = 6;
  796. $gapExtend = 2;
  797. break;
  798. case 2:
  799. $gapOpen = 5;
  800. $gapExtend = 2;
  801. break;
  802. case 3:
  803. $gapOpen = 10;
  804. $gapExtend = 1;
  805. break;
  806. case 4:
  807. $gapOpen = 9;
  808. $gapExtend = 1;
  809. break;
  810. case 5:
  811. $gapOpen = 8;
  812. $gapExtend = 1;
  813. break;
  814. }
  815. break;
  816. case 'PAM70':
  817. switch ($gapKey) {
  818. case 0:
  819. $gapOpen = 8;
  820. $gapExtend = 2;
  821. break;
  822. case 1:
  823. $gapOpen = 7;
  824. $gapExtend = 2;
  825. break;
  826. case 2:
  827. $gapOpen = 6;
  828. $gapExtend = 2;
  829. break;
  830. case 3:
  831. $gapOpen = 11;
  832. $gapExtend = 1;
  833. break;
  834. case 4:
  835. $gapOpen = 10;
  836. $gapExtend = 1;
  837. break;
  838. case 5:
  839. $gapOpen = 9;
  840. $gapExtend = 1;
  841. break;
  842. }
  843. break;
  844. case 'PAM250':
  845. switch ($gapKey) {
  846. case 0:
  847. $gapOpen = 15;
  848. $gapExtend = 3;
  849. break;
  850. case 1:
  851. $gapOpen = 14;
  852. $gapExtend = 3;
  853. break;
  854. case 2:
  855. $gapOpen = 13;
  856. $gapExtend = 3;
  857. break;
  858. case 3:
  859. $gapOpen = 12;
  860. $gapExtend = 3;
  861. break;
  862. case 4:
  863. $gapOpen = 11;
  864. $gapExtend = 3;
  865. break;
  866. case 5:
  867. $gapOpen = 17;
  868. $gapExtend = 2;
  869. break;
  870. case 6:
  871. $gapOpen = 16;
  872. $gapExtend = 2;
  873. break;
  874. case 7:
  875. $gapOpen = 15;
  876. $gapExtend = 2;
  877. break;
  878. case 8:
  879. $gapOpen = 14;
  880. $gapExtend = 2;
  881. break;
  882. case 9:
  883. $gapOpen = 13;
  884. $gapExtend = 2;
  885. break;
  886. case 10:
  887. $gapOpen = 21;
  888. $gapExtend = 1;
  889. break;
  890. case 11:
  891. $gapOpen = 20;
  892. $gapExtend = 1;
  893. break;
  894. case 12:
  895. $gapOpen = 19;
  896. $gapExtend = 1;
  897. break;
  898. case 13:
  899. $gapOpen = 18;
  900. $gapExtend = 1;
  901. break;
  902. case 14:
  903. $gapOpen = 17;
  904. $gapExtend = 1;
  905. break;
  906. }
  907. break;
  908. case 'BLOSUM80':
  909. switch ($gapKey) {
  910. case 0:
  911. $gapOpen = 8;
  912. $gapExtend = 2;
  913. break;
  914. case 1:
  915. $gapOpen = 7;
  916. $gapExtend = 2;
  917. break;
  918. case 2:
  919. $gapOpen = 6;
  920. $gapExtend = 2;
  921. break;
  922. case 3:
  923. $gapOpen = 11;
  924. $gapExtend = 1;
  925. break;
  926. case 4:
  927. $gapOpen = 10;
  928. $gapExtend = 1;
  929. break;
  930. case 5:
  931. $gapOpen = 9;
  932. $gapExtend = 1;
  933. break;
  934. }
  935. break;
  936. case 'BLOSUM62':
  937. switch ($gapKey) {
  938. case 0:
  939. $gapOpen = 11;
  940. $gapExtend = 2;
  941. break;
  942. case 1:
  943. $gapOpen = 10;
  944. $gapExtend = 2;
  945. break;
  946. case 2:
  947. $gapOpen = 9;
  948. $gapExtend = 2;
  949. break;
  950. case 3:
  951. $gapOpen = 8;
  952. $gapExtend = 2;
  953. break;
  954. case 4:
  955. $gapOpen = 7;
  956. $gapExtend = 2;
  957. break;
  958. case 5:
  959. $gapOpen = 6;
  960. $gapExtend = 2;
  961. break;
  962. case 6:
  963. $gapOpen = 13;
  964. $gapExtend = 1;
  965. break;
  966. case 7:
  967. $gapOpen = 12;
  968. $gapExtend = 1;
  969. break;
  970. case 8:
  971. $gapOpen = 11;
  972. $gapExtend = 1;
  973. break;
  974. case 9:
  975. $gapOpen = 10;
  976. $gapExtend = 1;
  977. break;
  978. case 10:
  979. $gapOpen = 9;
  980. $gapExtend = 1;
  981. break;
  982. }
  983. break;
  984. case 'BLOSUM45':
  985. switch ($gapKey) {
  986. case 0:
  987. $gapOpen = 13;
  988. $gapExtend = 3;
  989. break;
  990. case 1:
  991. $gapOpen = 12;
  992. $gapExtend = 3;
  993. break;
  994. case 2:
  995. $gapOpen = 11;
  996. $gapExtend = 3;
  997. break;
  998. case 3:
  999. $gapOpen = 10;
  1000. $gapExtend = 3;
  1001. break;
  1002. case 4:
  1003. $gapOpen = 15;
  1004. $gapExtend = 2;
  1005. break;
  1006. case 5:
  1007. $gapOpen = 14;
  1008. $gapExtend = 2;
  1009. break;
  1010. case 6:
  1011. $gapOpen = 13;
  1012. $gapExtend = 2;
  1013. break;
  1014. case 7:
  1015. $gapOpen = 12;
  1016. $gapExtend = 2;
  1017. break;
  1018. case 8:
  1019. $gapOpen = 19;
  1020. $gapExtend = 1;
  1021. break;
  1022. case 9:
  1023. $gapOpen = 18;
  1024. $gapExtend = 1;
  1025. break;
  1026. case 10:
  1027. $gapOpen = 17;
  1028. $gapExtend = 1;
  1029. break;
  1030. case 11:
  1031. $gapOpen = 16;
  1032. $gapExtend = 1;
  1033. break;
  1034. }
  1035. break;
  1036. case 'BLOSUM50':
  1037. switch ($gapKey) {
  1038. case 0:
  1039. $gapOpen = 13;
  1040. $gapExtend = 3;
  1041. break;
  1042. case 1:
  1043. $gapOpen = 12;
  1044. $gapExtend = 3;
  1045. break;
  1046. case 2:
  1047. $gapOpen = 11;
  1048. $gapExtend = 3;
  1049. break;
  1050. case 3:
  1051. $gapOpen = 10;
  1052. $gapExtend = 3;
  1053. break;
  1054. case 4:
  1055. $gapOpen = 9;
  1056. $gapExtend = 3;
  1057. break;
  1058. case 5:
  1059. $gapOpen = 16;
  1060. $gapExtend = 2;
  1061. break;
  1062. case 6:
  1063. $gapOpen = 15;
  1064. $gapExtend = 2;
  1065. break;
  1066. case 7:
  1067. $gapOpen = 14;
  1068. $gapExtend = 2;
  1069. break;
  1070. case 8:
  1071. $gapOpen = 13;
  1072. $gapExtend = 2;
  1073. break;
  1074. case 9:
  1075. $gapOpen = 12;
  1076. $gapExtend = 2;
  1077. break;
  1078. case 10:
  1079. $gapOpen = 19;
  1080. $gapExtend = 1;
  1081. break;
  1082. case 11:
  1083. $gapOpen = 18;
  1084. $gapExtend = 1;
  1085. break;
  1086. case 12:
  1087. $gapOpen = 17;
  1088. $gapExtend = 1;
  1089. break;
  1090. case 13:
  1091. $gapOpen = 16;
  1092. $gapExtend = 1;
  1093. break;
  1094. case 14:
  1095. $gapOpen = 15;
  1096. $gapExtend = 1;
  1097. break;
  1098. }
  1099. break;
  1100. case 'BLOSUM90':
  1101. switch ($gapKey) {
  1102. case 0:
  1103. $gapOpen = 9;
  1104. $gapExtend = 2;
  1105. break;
  1106. case 1:
  1107. $gapOpen = 8;
  1108. $gapExtend = 2;
  1109. break;
  1110. case 2:
  1111. $gapOpen = 7;
  1112. $gapExtend = 2;
  1113. break;
  1114. case 3:
  1115. $gapOpen = 6;
  1116. $gapExtend = 2;
  1117. break;
  1118. case 4:
  1119. $gapOpen = 11;
  1120. $gapExtend = 1;
  1121. break;
  1122. case 5:
  1123. $gapOpen = 10;
  1124. $gapExtend = 1;
  1125. break;
  1126. case 6:
  1127. $gapOpen = 9;
  1128. $gapExtend = 1;
  1129. break;
  1130. }
  1131. break;
  1132. }
  1133. return array(
  1134. 'gapOpen' => $gapOpen,
  1135. 'gapExtend' => $gapExtend,
  1136. );
  1137. }
  1138. /**
  1139. * AJAX callback for match and gap cost.
  1140. * @param $form
  1141. * @param $form_state
  1142. *
  1143. * @return mixed
  1144. */
  1145. function gap_cost_callback($form, &$form_state) {
  1146. return $form['B']['ALG']['SParam']['gapCost'];
  1147. }