tripal_feature-genotype_experiments.tpl.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. $num_results_per_page = 25;
  3. $feature = $variables['node']->feature;
  4. // get all genotypes associatated with the current feature
  5. $query = "SELECT * FROM genotype WHERE genotype_id IN (SELECT genotype_id FROM feature_genotype WHERE feature_id=%d)";
  6. $resource = db_query($query, $feature->feature_id);
  7. $genotypes = array();
  8. while( $r = db_fetch_array($resource)) {
  9. $genotypes[$r['genotype_id']] = $r;
  10. }
  11. if (!empty($genotypes)) {
  12. // SELECT all nd_experiments where type=genotype and experiment is connected to the current feature
  13. $query = "SELECT nd_experiment_id, genotype_id FROM nd_experiment_genotype "
  14. ."WHERE genotype_id IN (%s) "
  15. ."ORDER BY nd_experiment_id";
  16. $resource = pager_query($query, $num_results_per_page, 0, NULL, implode(',',array_keys($genotypes)));
  17. $results = array();
  18. while ($r = db_fetch_object($resource)) {
  19. // Get the stock associated with each experiment
  20. $query2 = "SELECT s.* FROM stock s "
  21. ."WHERE s.stock_id IN (SELECT stock_id FROM nd_experiment_stock WHERE nd_experiment_id=%d)";
  22. $stock = db_fetch_array(db_query($query2, $r->nd_experiment_id));
  23. $item = array(
  24. 'nd_experiment' => array(
  25. 'nd_experiment_id' => $r->nd_experiment_id
  26. ),
  27. 'genotype' => $genotypes[$r->genotype_id],
  28. 'stock' => $stock,
  29. );
  30. // Get the nid associated with the feature (used for linking)
  31. $query3 = "SELECT nid FROM chado_stock WHERE stock_id=%d";
  32. $nid = db_fetch_object(db_query($query3,$stock['stock_id']));
  33. $item['stock']['nid'] = $nid->nid;
  34. $results[$r->nd_experiment_id] = $item;
  35. }
  36. }
  37. ?>
  38. <?php if(count($results) > 0){ ?>
  39. <div id="tripal_feature-genotype_experiments-box" class="tripal_feature-info-box tripal-info-box">
  40. <div class="tripal_feature-info-box-title tripal-info-box-title">Genotype Experiments</div>
  41. <div class="tripal_feature-info-box-desc tripal-info-box-desc">
  42. Genotypes of this <?php print $feature->type_id->name; ?> in various germplasm
  43. </div>
  44. <table>
  45. <tr><th>Germplasm Assayed</th><th>Genotype Observed</th></tr>
  46. <?php foreach ($results as $r) {
  47. $genotype = $r['genotype']['description'];
  48. if (preg_match('/insufficient/',$genotype)) { $genotype = "<font color='grey'>".$genotype.'</font>'; }
  49. $stock_name = $r['stock']['name'];
  50. if ($r['stock']['nid']) {
  51. $stock_link = 'node/'.$r['stock']['nid'];
  52. $stock = l($stock_name, $stock_link);
  53. } else {
  54. $stock = $stock_name;
  55. }
  56. ?>
  57. <tr><td><?php print $stock; ?></td><td><?php print $genotype; ?></td></tr>
  58. <?php } ?>
  59. </table>
  60. <?php
  61. print theme('pager', array(), $num_results_per_page, 0, array('block'=>'genotype_experiments'), 5);
  62. ?>
  63. </div>
  64. <?php } ?>