template-tripal-blast-ui.html.twig 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of BLAST UI Menupage.
  5. */
  6. #}
  7. <div id="tripal-blast-info-win" style="display: none">In Bioinformatics, BLAST (Basic Local Alignment Search Tool) is an algorithm
  8. for comparing primary biological sequence information, such as the amino-acid
  9. sequences of different proteins or the nucleotides of DNA sequences. A BLAST
  10. search enables a researcher to compare a query sequence with a library or
  11. database of sequences, and identify library sequences that resemble the query
  12. sequence above a certain threshold. Different types of BLASTs are available
  13. according to the query sequences. For example, following the discovery of a
  14. previously unknown gene in the mouse, a scientist will typically perform a
  15. BLAST search of the human genome to see if humans carry a similar gene;
  16. BLAST will identify sequences in the human genome that resemble the mouse
  17. gene based on similarity of sequence.
  18. <blockquote>Altschul,S.F., Gish,W., Miller,W., Myers,E.W. and Lipman,D.J.
  19. (1990) Basic local alignment search tool. J. Mol. Biol., 215, 403–410.</blockquote>
  20. </div>
  21. <h2>BLAST Search <span id="tripal-blast-information-link">What is BLAST?</span></span></h2>
  22. <p>
  23. Search for one or more of your sequences (using BLAST). First pick
  24. a query type (nucleotide or protein). You will be able to set search
  25. parameters on the next page. Choose the appropriate program based on the
  26. Query type and Target database type.
  27. Please click on the program name to view the search form.
  28. <p>
  29. <div id="accordion">
  30. <h3>Nucleotide Query</h3>
  31. <div class="ui-accordion-content">
  32. <div class="tripal-blast-content-wrapper">
  33. <div class="tripal-blast-element-left">
  34. <h4>Nucleotide Database</h4>
  35. <small>Search a nucleotide database using a nucleotide query.</small>
  36. </div>
  37. <div class="tripal-blast-element-right">
  38. {{ context_links['link_blastn'] }}
  39. </div>
  40. <div class="tripal-blast-clear-float">&nbsp;</div>
  41. </div>
  42. <div class="tripal-blast-content-wrapper">
  43. <div class="tripal-blast-element-left">
  44. <h4>Protein Database</h4>
  45. <small>Search protein database using a translated nucleotide query.</small>
  46. </div>
  47. <div class="tripal-blast-element-right">
  48. {{ context_links['link_blastx'] }}
  49. </div>
  50. <div class="tripal-blast-clear-float">&nbsp;</div>
  51. </div>
  52. </div>
  53. <h3>Protien Query</h3>
  54. <div class="ui-accordion-content">
  55. <div class="tripal-blast-content-wrapper">
  56. <div class="tripal-blast-element-left">
  57. <h4>Nucleotide Database</h4>
  58. <small>Search translated nucleotide database using a protein query.</small>
  59. </div>
  60. <div class="tripal-blast-element-right">
  61. {{ context_links['link_tblastn'] }}
  62. </div>
  63. <div class="tripal-blast-clear-float">&nbsp;</div>
  64. </div>
  65. <div class="tripal-blast-content-wrapper">
  66. <div class="tripal-blast-element-left">
  67. <h4>Protein Database</h4>
  68. <small>Search protein database using a protein query.</small>
  69. </div>
  70. <div class="tripal-blast-element-right">
  71. {{ context_links['link_blastp'] }}
  72. </div>
  73. <div class="tripal-blast-clear-float">&nbsp;</div>
  74. </div>
  75. </div>
  76. </div>