blast_ui.form_advanced_options.inc 31 KB

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