tripal_feature_expression.tpl.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. $feature = $variables['node']->feature;
  3. if (!$variables['has_exp'] and $variables['json_exp']) { ?>
  4. No biomaterial libraries express this feature.
  5. <?php }
  6. else {
  7. if ($variables['json_exp']) {
  8. ?>
  9. <a name="expression-top"> </a>
  10. <p>
  11. Hover the mouse over a column in the graph to view expression values. <br>
  12. <a href='' onclick="expSortDown(); return false;">Sort Descending</a> |
  13. <a href='' onclick="expSortUp(); return false;">Sort Ascending</a> |
  14. <a href='' onclick="nonZero(); return false;">Only Non-Zero Values</a> |
  15. <a href='' onclick="expChart(); return false;">Tile/Chart</a> |
  16. <a href='' onclick="expNormal(); return false;">Reset</a> |
  17. <a href="<?php print url('chado/expression/csv', array('query' => array('feature_id' => $feature->feature_id))) ?>">Download</a>
  18. </p>
  19. <?php
  20. tripal_add_d3js();
  21. $hide_biomaterial_labels = $variables['hide_biomaterial_labels'];
  22. $json_exp = $variables['json_exp'];
  23. $limit_label_length = $variables['limit_label_length'];
  24. $expression_display = $variables['expression_display'];
  25. $biomaterial_display_width = $variables['biomaterial_display_width']; ?>
  26. <script> <?php
  27. print 'heatMapRaw=' . $json_exp . ';';
  28. print 'maxLength=' . $limit_label_length . ';';
  29. print 'showLabels=' . $hide_biomaterial_labels . ';';
  30. print 'col="' . $expression_display . '";';
  31. print 'colWidth=' . $biomaterial_display_width . ';';
  32. ?>
  33. </script>
  34. <script type="text/javascript">
  35. Drupal.behaviors.tripal_analysis_expression = {
  36. attach: function (context, settings) {
  37. expNormal();
  38. }
  39. };
  40. </script>
  41. <?php
  42. //drupal_add_js('/theme/js/expression.js','file');
  43. //$scripts = drupal_get_js();
  44. //print $scripts;
  45. //print drupal_get_path('module','tripal_analysis_expression') . '/theme/js/expression.js';
  46. ?>
  47. <figure>
  48. </figure>
  49. <a href="#expression-top">back to top</a>
  50. <script>
  51. $(function() {
  52. $('.figure-tripal-data-pane-title.tripal-data-pane-title').html('Expression <?php echo $feature->name?>')
  53. })
  54. </script>
  55. <?php
  56. }
  57. }