blast_user_menupage.tpl.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * @file
  4. *
  5. */
  6. ?>
  7. <p>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.</p>
  18. <blockquote>Altschul,S.F., Gish,W., Miller,W., Myers,E.W. and Lipman,D.J. (1990) Basic
  19. local alignment search tool. J. Mol. Biol., 215, 403–410.</blockquote>
  20. <h2> BLAST Search </h2>
  21. <p>
  22. Search for one or more of your sequences (using BLAST). First pick
  23. a query type (nucleotide or protein). You will be able to set search
  24. parameters on the next page. Choose the appropriate program based on the Query type and Target
  25. database type. Please click on the program name to view the search form.
  26. <p>
  27. <table>
  28. <tr>
  29. <th>Query Type</th>
  30. <th>Database Type</th>
  31. <th>BLAST Program</th>
  32. </tr>
  33. <tr>
  34. <td rowspan="2"><?php print l('Nucleotide', './blast/nucleotide');?></td>
  35. <td>Nucleotide</td>
  36. <td><?php print l('blastn', './blast/nucleotide/nucleotide');?>:
  37. Search a nucleotide database using a nucleotide query.</td>
  38. </tr>
  39. <tr>
  40. <td>Protein</td>
  41. <td><?php print l('blastx', './blast/nucleotide/protein');?>:
  42. Search protein database using a translated nucleotide query.</td>
  43. </tr>
  44. <tr>
  45. <td rowspan="2"><?php print l('Protein', './blast/protein');?></td>
  46. <td>Nucleotide</td>
  47. <td><?php print l('tblastn', './blast/protein/nucleotide');?>:
  48. Search translated nucleotide database using a protein query.</td>
  49. </tr>
  50. <tr>
  51. <td>Protein</td>
  52. <td><?php print l('blastp', './blast/protein/protein');?>:
  53. Search protein database using a protein query.</td>
  54. </tr>
  55. </table>
  56. <?php print theme('blast_recent_jobs', array()); ?>