blast_user_menupage.tpl.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @file
  4. *
  5. */
  6. ?>
  7. <h1> BLAST Search </h1>
  8. <p>
  9. Search for one or more of your sequences (using BLAST). First pick
  10. a query type (nucleotide or protein). You will be able to set search
  11. parameters on the next page.
  12. </p>
  13. <p>
  14. Choose the appropriate program based on the Query type and Target
  15. database type. Please click on the program name to view the search form.
  16. <p>
  17. <table>
  18. <tr>
  19. <th>Query Type</th>
  20. <th>Database Type</th>
  21. <th>BLAST Program</th>
  22. </tr>
  23. <tr>
  24. <td rowspan="2">Nucleotide</td>
  25. <td>Nucleotide</td>
  26. <td><?php print l('blastn', './blast/nucleotide/nucleotide');?>:
  27. Search a nucleotide database using a nucleotide query.</td>
  28. </tr>
  29. <tr>
  30. <td>Protein</td>
  31. <td><?php print l('blastx', './blast/nucleotide/protein');?>:
  32. Search protein database using a translated nucleotide query.</td>
  33. </tr>
  34. <tr>
  35. <td rowspan="2">Protein</td>
  36. <td>Nucleotide</td>
  37. <td><?php print l('tblastn', './blast/protein/nucleotide');?>:
  38. Search translated nucleotide database using a protein query.</td>
  39. </tr>
  40. <tr>
  41. <td>Protein</td>
  42. <td><?php print l('blastp', './blast/protein/protein');?>:
  43. Search protein database using a protein query.</td>
  44. </tr>
  45. </table>
  46. <?php echo get_recent_jobs(); ?>