blast_ui.form_advanced_options.inc 43 KB

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