blast_ui.form_advanced_options.inc 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254
  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. // Limit number of query hits
  124. $qRange = $form_state['values']['qRange'];
  125. return array(
  126. 'max_target_seqs' => $numAlign,
  127. 'evalue' => $eVal,
  128. 'word_size' => $wordSize,
  129. 'gapopen' => $gap['gapOpen'],
  130. 'gapextend' => $gap['gapExtend'],
  131. 'penalty' => $m_m['penalty'],
  132. 'reward' => $m_m['reward'],
  133. );
  134. }
  135. /**
  136. * @section
  137. * BLASTx: Search protein database using a translated nucleotide query.
  138. * ----------------------------------------------------------------------------
  139. */
  140. /**
  141. * Adds the BLASTx Advanced Options to the passed in form.
  142. *
  143. * This form function is meant to be called within another form definition.
  144. *
  145. * @param $form
  146. * The form the advanced options should be added to. This form already
  147. * contains a $form['ALG'] fieldset meant to contain the advanced options.
  148. * @param $formstate
  149. * The current state fo the form passed in as $form.
  150. */
  151. function blast_ui_blastx_advanced_options_form(&$form, $form_state) {
  152. // Edit and Resubmit functionality.
  153. // We want to pull up the details from a previous blast and fill them in as defaults
  154. // for this blast.
  155. if (isset($form_state['prev_blast'])) {
  156. $defaults = _get_default_values($form_state['prev_blast']->options, 'blastx');
  157. }
  158. else {
  159. $defaults = _get_default_values(array(), 'blastx');
  160. }
  161. $form['ALG']['GParam'] = array(
  162. '#type' => 'fieldset',
  163. '#title' => t('General parameters'),
  164. '#collapsible' => FALSE,
  165. );
  166. $form['ALG']['GParam']['maxTarget'] = array(
  167. '#type' => 'select',
  168. '#title' => t('Max target sequences:'),
  169. '#options' => _get_max_target('blastx'),
  170. '#default_value' => $defaults['max_target_seqs'],
  171. '#description' => t('Select the maximum number of aligned sequences to display'),
  172. );
  173. $form['ALG']['GParam']['eVal'] = array(
  174. '#type' => 'textfield',
  175. '#title' => t('e-Value (Expected Threshold)'),
  176. '#default_value' => $defaults['evalue'],
  177. '#size' => 12,
  178. '#maxlength' => 20,
  179. '#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>'),
  180. );
  181. $form['ALG']['GParam']['wordSize'] = array(
  182. '#type' => 'select',
  183. '#title' => t('Word size:'),
  184. '#options' => _get_word_size('blastx'),
  185. '#default_value' => $defaults['word_size'],
  186. '#description' => t('The length of the seed that initiates an alignment'),
  187. );
  188. // Scoring parameters
  189. //.........................
  190. $form['ALG']['SParam'] = array(
  191. '#type' => 'fieldset',
  192. '#title' => t('Scoring parameters'),
  193. '#collapsible' => FALSE,
  194. );
  195. $matrix_options = _get_matrix_options();
  196. $form['ALG']['SParam']['Matrix'] = array(
  197. '#type' => 'select',
  198. '#title' => 'Matrix',
  199. '#options' => $matrix_options,
  200. '#default_value' => $defaults['matrix'],
  201. '#description' => t('Assigns a score for aligning pairs of residues, and determines overall alignment score..'),
  202. '#ajax' => array(
  203. 'callback' => 'matrix_gap_cost_callback',
  204. 'wrapper' => 'gap_cost_wrapper',
  205. ),
  206. );
  207. $matrix_set = $defaults['matrix'];
  208. if (isset($form_state['values']) && isset($form_state['values']['Matrix'])) {
  209. $matrix_set = $form_state['values']['Matrix'];
  210. }
  211. $form['ALG']['SParam']['gapCost'] = array(
  212. '#type' => 'select',
  213. '#title' => t('Gap Costs:'),
  214. '#prefix' => '<div id="gap_cost_wrapper">',
  215. '#suffix' => '</div>',
  216. '#options' => _get_gap_for_matrix($matrix_set),
  217. '#default_value' => $defaults['gap'],
  218. '#description' => t('Cost to create and extend a gap in an alignment.'),
  219. );
  220. }
  221. /**
  222. * Validate the advanced options provided by the BLASTn form above.
  223. *
  224. * @see blast_ui_blastx_advanced_options_form().
  225. */
  226. function blast_ui_blastx_advanced_options_form_validate($form, $form_state) {
  227. // Ensure that our textfields are what we expect them to be since we will
  228. // use them to generate the BLAST command.
  229. // First up, e-value. We expect the evalue to be a very small yet still
  230. // positive number. It may be given in scientific notation which is
  231. // luckily supported by is_numeric().
  232. if (!is_numeric($form_state['values']['eVal'])) {
  233. 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>.');
  234. }
  235. }
  236. /**
  237. * Processed the advanced options provided by the BLASTx form above.
  238. *
  239. * @see blast_ui_blastx_advanced_options_form().
  240. */
  241. function blast_ui_blastx_advanced_options_form_submit($form, $form_state) {
  242. // Same as blastp form submit
  243. return blast_ui_blastp_advanced_options_form_submit($form, $form_state);
  244. }
  245. /**
  246. * @section
  247. * BLASTp: Search protein database using a protein query.
  248. * ----------------------------------------------------------------------------
  249. */
  250. /**
  251. * Adds the BLASTp Advanced Options to the passed in form.
  252. *
  253. * This form function is meant to be called within another form definition.
  254. *
  255. * @param $form
  256. * The form the advanced options should be added to. This form already
  257. * contains a $form['ALG'] fieldset meant to contain the advanced options.
  258. * @param $formstate
  259. * The current state fo the form passed in as $form.
  260. */
  261. function blast_ui_blastp_advanced_options_form(&$form, $form_state) {
  262. // Edit and Resubmit functionality.
  263. // We want to pull up the details from a previous blast and fill them in as defaults
  264. // for this blast.
  265. if (isset($form_state['prev_blast'])) {
  266. $defaults = _get_default_values($form_state['prev_blast']->options, 'blastp');
  267. }
  268. else {
  269. $defaults = _get_default_values(array(), 'blastp');
  270. }
  271. //General parameters
  272. $form['ALG']['GParam'] = array(
  273. '#type' => 'fieldset',
  274. '#title' => t('General parameters'),
  275. '#collapsible' => FALSE,
  276. );
  277. $form['ALG']['GParam']['maxTarget'] = array(
  278. '#type' => 'select',
  279. '#title' => t('Max target sequences:'),
  280. '#options' => _get_max_target('blastp'),
  281. '#default_value' => $defaults['max_target_seqs'],
  282. '#description' => t('Select the maximum number of aligned sequences to display'),
  283. );
  284. $form['ALG']['GParam']['eVal'] = array(
  285. '#type' => 'textfield',
  286. '#title' => t('e-value(Expect threshold)'),
  287. '#default_value' => $defaults['evalue'],
  288. '#size' => 12,
  289. '#maxlength' => 20,
  290. '#description' => t('Expected number of chance matches in a random model.'),
  291. );
  292. $form['ALG']['GParam']['wordSize'] = array(
  293. '#type' => 'select',
  294. '#title' => t('Word size:'),
  295. '#options' => _get_word_size('blastp'),
  296. '#default_value' => $defaults['word_size'],
  297. '#description' => t('The length of the seed that initiates an alignment'),
  298. );
  299. // Scoring parameters
  300. $form['ALG']['SParam'] = array(
  301. '#type' => 'fieldset',
  302. '#title' => t('Scoring parameters'),
  303. '#collapsible' => FALSE,
  304. );
  305. $matrix_options = _get_matrix_options();
  306. $form['ALG']['SParam']['Matrix'] = array(
  307. '#type' => 'select',
  308. '#title' => 'Matrix',
  309. '#options' => $matrix_options,
  310. '#default_value' => $defaults['matrix'],
  311. '#description' => t('Assigns a score for aligning pairs of residues, and determines overall alignment score..'),
  312. '#ajax' => array(
  313. 'callback' => 'matrix_gap_cost_callback',
  314. 'wrapper' => 'gap_cost_wrapper',
  315. ),
  316. );
  317. $matrix_set = $defaults['matrix'];
  318. if (isset($form_state['values']) && isset($form_state['values']['Matrix'])) {
  319. $matrix_set = $form_state['values']['Matrix'];
  320. }
  321. $form['ALG']['SParam']['gapCost'] = array(
  322. '#type' => 'select',
  323. '#title' => t('Gap Costs:'),
  324. '#prefix' => '<div id="gap_cost_wrapper">',
  325. '#suffix' => '</div>',
  326. '#options' => _get_gap_for_matrix($matrix_set),
  327. '#default_value' => $defaults['gap'],
  328. '#description' => t('Cost to create and extend a gap in an alignment.'),
  329. );
  330. }
  331. /**
  332. * Validate the advanced options provided by the BLASTp form above.
  333. *
  334. * @see blast_ui_blastp_advanced_options_form().
  335. */
  336. function blast_ui_blastp_advanced_options_form_validate($form, $form_state) {
  337. // Ensure that our textfields are what we expect them to be since we will
  338. // use them to generate the BLAST command.
  339. // First up, e-value. We expect the evalue to be a very small yet still
  340. // positive number. It may be given in scientific notation which is
  341. // luckily supported by is_numeric().
  342. if (!is_numeric($form_state['values']['eVal'])) {
  343. 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>.');
  344. }
  345. }
  346. /**
  347. * Processed the advanced options provided by the BLASTp form above.
  348. *
  349. * @see blast_ui_blastp_advanced_options_form().
  350. */
  351. function blast_ui_blastp_advanced_options_form_submit($form, $form_state) {
  352. $eVal = $form_state['values']['eVal'];
  353. $trgtKey = $form_state['values']['maxTarget'];
  354. $numAlign = $form['ALG']['GParam']['maxTarget']['#options'][$trgtKey];
  355. $wsKey = $form_state['values']['wordSize'];
  356. $wordSize = $form['ALG']['GParam']['wordSize']['#options'][$wsKey];
  357. $qRange = $form_state['values']['qRange'];
  358. // Expand Gap Cost key into open and extend penalties
  359. $matrix = $form_state['values']['Matrix'];
  360. $gapKey = $form_state['values']['gapCost'];
  361. $gap = _set_protein_gap($matrix, $gapKey);
  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. $matchmis = 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. }