tripal_genetic.schema.inc 694 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @file
  4. * Add to the tripal schema definitions
  5. */
  6. /**
  7. * Implements hook_chado_schema_v1_11_table()
  8. * Purpose: To add descriptions and foreign keys to default table description
  9. * Note: This array will be merged with the array from all other implementations
  10. *
  11. * @return
  12. * Array describing the genotype table
  13. *
  14. * @ingroup tripal_schema_api
  15. */
  16. function tripal_genetic_chado_schema_v1_11_genotype() {
  17. $description = array();
  18. $referring_tables = array('analysisfeature',
  19. 'feature_genotype',
  20. 'phendesc',
  21. 'phenotype_comparison',
  22. 'phenstatement',
  23. 'stock_genotype',
  24. );
  25. $description['referring_tables'] = $referring_tables;
  26. return $description;
  27. }