tripal_genetic.schema.inc 636 B

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