tripal_stock-genotype_experiments.tpl.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. $num_results_per_page = 25;
  3. // SELECT all nd_experiments where type=genotype and experiment is connected to the current stock
  4. $query = "SELECT nd_experiment_id FROM nd_experiment "
  5. ."WHERE nd_experiment_id IN (SELECT nd_experiment_id FROM nd_experiment_stock WHERE stock_id=%d) "
  6. ."AND type_id IN (SELECT cvterm_id FROM cvterm WHERE name='genotype') "
  7. ."ORDER BY nd_experiment_id";
  8. $resource = pager_query($query, $num_results_per_page, 0, NULL, $node->stock->stock_id);
  9. $results = array();
  10. while ($r = db_fetch_object($resource)) {
  11. // Get the genotype & feature associated with each experiment
  12. $query2 = "SELECT g.*, f.uniquename as feature_uniquename, f.name as feature_name, f.feature_id FROM genotype g "
  13. ."LEFT JOIN feature_genotype fg ON fg.genotype_id=g.genotype_id "
  14. ."LEFT JOIN feature f ON fg.feature_id=f.feature_id "
  15. ."WHERE g.genotype_id IN (SELECT genotype_id FROM nd_experiment_genotype WHERE nd_experiment_id=%d)";
  16. $genotype_feature = db_fetch_object(db_query($query2, $r->nd_experiment_id));
  17. $item = array(
  18. 'nd_experiment' => array(
  19. 'nd_experiment_id' => $r->nd_experiment_id
  20. ),
  21. 'genotype' => array(
  22. 'genotype_id' => $genotype_feature->genotype_id,
  23. 'uniquename' => $genotype_feature->uniquename,
  24. 'description' => $genotype_feature->description,
  25. ),
  26. 'feature' => array(
  27. 'feature_id' => $genotype_feature->feature_id,
  28. 'uniquename' => $genotype_feature->feature_uniquename,
  29. 'name' => $genotype_feature->feature_name,
  30. ),
  31. );
  32. // Get the nid associated with the feature (used for linking)
  33. $query3 = "SELECT nid FROM chado_feature WHERE feature_id=%d";
  34. $nid = db_fetch_object(db_query($query3,$genotype_feature->feature_id));
  35. $item['feature']['nid'] = $nid->nid;
  36. $results[$r->nd_experiment_id] = $item;
  37. }
  38. ?>
  39. <?php if (!empty($results)) { ?>
  40. <div id="tripal_stock-genotype_experiments-box" class="tripal_stock-info-box tripal-info-box">
  41. <div class="tripal_stock-info-box-title tripal-info-box-title">Genotype Experiments</div>
  42. <div class="tripal_stock-info-box-desc tripal-info-box-desc"></div>
  43. <table>
  44. <tr><th>Marker Assayed</th><th>Genotype Observed</th></tr>
  45. <?php
  46. foreach ($results as $r) {
  47. // genotype
  48. $genotype = $r['genotype']['description'];
  49. if (preg_match('/insufficient/',$genotype)) {
  50. $genotype = "<font color='grey'>".$genotype.'</font>';
  51. }
  52. // feature name
  53. if ($r['feature']['name']) {
  54. $marker_name = $r['feature']['name'];
  55. } else {
  56. $marker_name = $r['feature']['uniquename'];
  57. }
  58. // add link if feature sync'd
  59. if ($r['feature']['nid']) {
  60. $marker_link = 'node/'.$r['feature']['nid'];
  61. $marker = l($marker_name, $marker_link);
  62. } else {
  63. $marker = $marker_name;
  64. }
  65. ?>
  66. <tr><td><?php print $marker; ?></td><td><?php print $genotype; ?></td></tr>
  67. <?php } ?>
  68. </table>
  69. <?php print theme('pager', array(), $num_results_per_page, 0, array('block'=>'genotype_experiments'), 5); ?>
  70. </div>
  71. <?php } ?>