blast_protein_user_menupage.tpl.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <p>In bioinformatics, BLAST (Basic Local Alignment Search Tool) is an algorithm
  2. for comparing primary biological sequence information, such as the
  3. amino-acid
  4. sequences of different proteins or the nucleotides of DNA sequences. A BLAST
  5. search enables a researcher to compare a query sequence with a library or
  6. database of sequences, and identify library sequences that resemble the
  7. query
  8. sequence above a certain threshold. Different types of BLASTs are available
  9. according to the query sequences. For example, following the discovery of a
  10. previously unknown gene in the mouse, a scientist will typically perform a
  11. BLAST search of the human genome to see if humans carry a similar gene;
  12. BLAST will identify sequences in the human genome that resemble the mouse
  13. gene based on similarity of sequence.</p>
  14. <blockquote>Altschul,S.F., Gish,W., Miller,W., Myers,E.W. and Lipman,D.J. (1990)
  15. Basic
  16. local alignment search tool. J. Mol. Biol., 215, 403–410.
  17. </blockquote>
  18. <h3> BLAST Search </h3>
  19. <p>
  20. Search for one or more of your sequences (using BLAST). First pick
  21. a query type (nucleotide or protein). You will be able to set search
  22. parameters on the next page. Choose the appropriate program based on the
  23. Query type and Target
  24. database type. Please click on the program name to view the search form.
  25. <p>
  26. <table class="table table-bordered">
  27. <tr>
  28. <th>Query Type</th>
  29. <th>Database Type</th>
  30. <th>BLAST Program</th>
  31. <th>Action</th>
  32. </tr>
  33. <tr>
  34. <td rowspan="2">Nucleotide</td>
  35. <td>Nucleotide</td>
  36. <td><?php print l('blastn', './blast/nucleotide/nucleotide'); ?>:
  37. Search a nucleotide database using a nucleotide query.
  38. </td>
  39. <td>
  40. <?php print l('Launch blastn', './blast/nucleotide/nucleotide', [
  41. 'attributes' => [
  42. 'class' => ['btn btn-primary btn-block'],
  43. ],
  44. ]); ?>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td>Protein</td>
  49. <td><?php print l('blastx', './blast/nucleotide/protein'); ?>:
  50. Search protein database using a translated nucleotide query.
  51. </td>
  52. <td>
  53. <?php print l('Launch blastx', './blast/nucleotide/protein', [
  54. 'attributes' => [
  55. 'class' => ['btn btn-primary btn-block'],
  56. ],
  57. ]); ?>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td rowspan="2">Protein</td>
  62. <td>Nucleotide</td>
  63. <td><?php print l('tblastn', './blast/protein/nucleotide'); ?>:
  64. Search translated nucleotide database using a protein query.
  65. </td>
  66. <td>
  67. <?php print l('Launch tblastn', './blast/protein/nucleotide', [
  68. 'attributes' => [
  69. 'class' => ['btn btn-primary btn-block'],
  70. ],
  71. ]); ?>
  72. </td>
  73. </tr>
  74. <tr>
  75. <td>Protein</td>
  76. <td><?php print l('blastp', './blast/protein/protein'); ?>:
  77. Search protein database using a protein query.
  78. </td>
  79. <td>
  80. <?php print l('Launch blastp', './blast/protein/protein', [
  81. 'attributes' => [
  82. 'class' => ['btn btn-primary btn-block'],
  83. ],
  84. ]); ?>
  85. </td>
  86. </tr>
  87. </table>
  88. <?php print theme('blast_recent_jobs', ['tblastn', 'blastp']); ?>