blast_ui.form_advanced_options.inc 41 KB

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