blast_user_menupage.tpl.php 1.3 KB

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