blast_ui.form_advanced_options.inc 36 KB

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