tripal_analysis_expression.analysis.tpl.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <p>
  2. This analysis contains expression data
  3. for <?php print $variables['features_count']; ?> features
  4. across <?php print $variables['biomaterials_count']; ?> biosamples.
  5. </p>
  6. <?php if($variables['file']): ?>
  7. <table class="table table-valign-middle table-sm table-hover">
  8. <tbody>
  9. <tr class="no-border">
  10. <td class="text-muted download-td"><i class="fa fa-file-text-o"></i></td>
  11. <th>
  12. Expression Data
  13. <div>
  14. <a class="text-sm text-muted font-normal" href="<?php print file_create_url($variables['file']) ?>" target="_blank">
  15. Download all expression data associated with this analysis
  16. </a>
  17. </div>
  18. </th>
  19. <td class="text-right"><a target="_blank" href="<?php print file_create_url($variables['file']) ?>" class="btn btn-primary"><i class="fa fa-download"></i></a></td>
  20. </tr>
  21. </tbody>
  22. </table>
  23. <?php endif; ?>
  24. <script>
  25. (function ($) {
  26. $(function () {
  27. var message = $('<span />');
  28. var link = $('#expressionDownloadLink');
  29. link.after(message);
  30. link.click(function (e) {
  31. e.preventDefault();
  32. var src = $(this).attr('href');
  33. var iframe = $('<iframe />', {
  34. src: src,
  35. width: 1,
  36. height: 1
  37. });
  38. $('body').append(iframe);
  39. message.html('Generating file. Download will start automatically...');
  40. });
  41. });
  42. })(jQuery);
  43. </script>