blast_nucleotide_user_menupage.tpl.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * @file
  4. *
  5. */
  6. ?>
  7. <style>
  8. tr.blast-highlighted td {
  9. background: #F6FFEC;
  10. }
  11. </style>
  12. <p>In bioinformatics, BLAST (Basic Local Alignment Search Tool) is an algorithm
  13. for comparing primary biological sequence information, such as the amino-acid
  14. sequences of different proteins or the nucleotides of DNA sequences. A BLAST
  15. search enables a researcher to compare a query sequence with a library or
  16. database of sequences, and identify library sequences that resemble the query
  17. sequence above a certain threshold. Different types of BLASTs are available
  18. according to the query sequences. For example, following the discovery of a
  19. previously unknown gene in the mouse, a scientist will typically perform a
  20. BLAST search of the human genome to see if humans carry a similar gene;
  21. BLAST will identify sequences in the human genome that resemble the mouse
  22. gene based on similarity of sequence.</p>
  23. <blockquote>Altschul,S.F., Gish,W., Miller,W., Myers,E.W. and Lipman,D.J. (1990) Basic
  24. local alignment search tool. J. Mol. Biol., 215, 403–410.</blockquote>
  25. <table>
  26. <tr>
  27. <th>Query Type</th>
  28. <th>Database Type</th>
  29. <th>BLAST Program</th>
  30. </tr>
  31. <tr class= "blast-highlighted">
  32. <td>Nucleotide</td>
  33. <td rowspan="2">Nucleotide</td>
  34. <td><?php print l('blastn', './blast/nucleotide/nucleotide');?>:
  35. Search a nucleotide database using a nucleotide query.</td>
  36. </tr>
  37. <tr class="blast-highlighted">
  38. <td>Protein</td>
  39. <td><?php print l('blastx', './blast/nucleotide/protein');?>:
  40. Search protein database using a translated nucleotide query.</td>
  41. </tr>
  42. <tr>
  43. <td rowspan="2">Protein</td>
  44. <td>Nucleotide</td>
  45. <td><?php print l('tblastn', './blast/protein/nucleotide');?>:
  46. Search translated nucleotide database using a protein query.</td>
  47. </tr>
  48. <tr>
  49. <td>Protein</td>
  50. <td><?php print l('blastp', './blast/protein/protein');?>:
  51. Search protein database using a protein query.</td>
  52. </tr>
  53. </table>