tripal_library_references.tpl.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. $library = $variables['node']->library;
  3. // expand the library object to include the external references stored
  4. // in the library_dbxref table
  5. $library = tripal_core_expand_chado_vars($library,'table','library_dbxref');
  6. // get the references. if only one reference exists then we want to convert
  7. // the object into an array, otherwise the value is an array
  8. $references = $library->library_dbxref;
  9. if (!$references) {
  10. $references = array();
  11. } elseif (!is_array($references)) {
  12. $references = array($references);
  13. }
  14. // check to see if the reference 'GFF_source' is there. This reference is
  15. // used to help the GBrowse chado adapter find librarys. We don't need to show
  16. // it
  17. if($references[0]->dbxref_id->db_id->name == 'GFF_source' and count($references)==1){
  18. $references = array();
  19. }
  20. ?>
  21. <div id="tripal_library-references-box" class="tripal_library-info-box tripal-info-box">
  22. <div class="tripal_library-info-box-title tripal-info-box-title">References</div>
  23. <div class="tripal_library-info-box-desc tripal-info-box-desc">External references for this <?php print $library->type_id->name ?></div>
  24. <?php if(count($references) > 0){ ?>
  25. <table id="tripal_library-references-table" class="tripal_library-table tripal-table tripal-table-horz">
  26. <tr>
  27. <th>Dababase</th>
  28. <th>Accession</th>
  29. </tr>
  30. <?php
  31. $i = 0;
  32. foreach ($references as $library_dbxref){
  33. if($library_dbxref->dbxref_id->db_id->name == 'GFF_source'){
  34. continue; // skip the GFF_source entry as this is just needed for the GBrowse chado adapter
  35. }
  36. $class = 'tripal_library-table-odd-row tripal-table-odd-row';
  37. if($i % 2 == 0 ){
  38. $class = 'tripal_library-table-odd-row tripal-table-even-row';
  39. }
  40. ?>
  41. <tr class="<?php print $class ?>">
  42. <td><?php print $library_dbxref->dbxref_id->db_id->name?></td>
  43. <td><?php
  44. if($library_dbxref->db_id->urlprefix){
  45. ?><a href="<?php print $library_dbxref->db_id->urlprefix.$library_dbxref->dbxref_id->accession?>" target="_blank"><?php print $library_dbxref->dbxref_id->accession?></a><?php
  46. } else {
  47. print $library_dbxref->dbxref_id->accession;
  48. }
  49. ?>
  50. </td>
  51. </tr>
  52. <?php
  53. $i++;
  54. } ?>
  55. </table>
  56. <?php } else { ?>
  57. <div class="tripal-no-results">There are no external references</div>
  58. <?php }?>
  59. </div>