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

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