blast_ui.form_advanced_options.inc 36 KB

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