function tripal_chado_chado_get_v1_11_tables

3.x tripal_chado.schema_v1.11.api.inc tripal_chado_chado_get_v1_11_tables()

Lists the table names in the v1.11 chado schema

Return value

An array containing all of the table names

1 call to tripal_chado_chado_get_v1_11_tables()
chado_get_table_names in tripal_chado/api/tripal_chado.schema.api.inc
Retrieves the list of tables in the Chado schema. By default it only returns the default Chado tables, but can return custom tables added to the Chado schema if requested

File

tripal_chado/api/tripal_chado.schema_v1.11.api.inc, line 10726
Describes the chado tables in version 1.11

Code

function tripal_chado_chado_get_v1_11_tables() {
  $tables = array(
    'acquisition',
    'acquisition_relationship',
    'acquisitionprop',
    'analysis',
    'analysisfeature',
    'analysisfeatureprop',
    'analysisprop',
    'arraydesign',
    'arraydesignprop',
    'assay',
    'assay_biomaterial',
    'assay_project',
    'assayprop',
    'biomaterial',
    'biomaterial_dbxref',
    'biomaterial_relationship',
    'biomaterial_treatment',
    'biomaterialprop',
    'cell_line',
    'cell_line_cvterm',
    'cell_line_cvtermprop',
    'cell_line_dbxref',
    'cell_line_feature',
    'cell_line_library',
    'cell_line_pub',
    'cell_line_relationship',
    'cell_line_synonym',
    'cell_lineprop',
    'cell_lineprop_pub',
    'channel',
    'contact',
    'contact_relationship',
    'control',
    'cv',
    'cvterm',
    'cvterm_dbxref',
    'cvterm_relationship',
    'cvtermpath',
    'cvtermprop',
    'cvtermsynonym',
    'db',
    'dbxref',
    'dbxrefprop',
    'eimage',
    'element',
    'element_relationship',
    'elementresult',
    'elementresult_relationship',
    'environment',
    'environment_cvterm',
    'expression',
    'expression_cvterm',
    'expression_cvtermprop',
    'expression_image',
    'expression_pub',
    'expressionprop',
    'feature',
    'feature_cvterm',
    'feature_cvterm_dbxref',
    'feature_cvterm_pub',
    'feature_cvtermprop',
    'feature_dbxref',
    'feature_expression',
    'feature_expressionprop',
    'feature_genotype',
    'feature_phenotype',
    'feature_pub',
    'feature_pubprop',
    'feature_relationship',
    'feature_relationship_pub',
    'feature_relationshipprop',
    'feature_relationshipprop_pub',
    'feature_synonym',
    'featureloc',
    'featureloc_pub',
    'featuremap',
    'featuremap_pub',
    'featurepos',
    'featureprop',
    'featureprop_pub',
    'featurerange',
    'genotype',
    'library',
    'library_cvterm',
    'library_dbxref',
    'library_feature',
    'library_pub',
    'library_synonym',
    'libraryprop',
    'libraryprop_pub',
    'magedocumentation',
    'mageml',
    'materialized_view',
    'organism',
    'organism_dbxref',
    'organismprop',
    'phendesc',
    'phenotype',
    'phenotype_comparison',
    'phenotype_comparison_cvterm',
    'phenotype_cvterm',
    'phenstatement',
    'phylonode',
    'phylonode_dbxref',
    'phylonode_organism',
    'phylonode_pub',
    'phylonode_relationship',
    'phylonodeprop',
    'phylotree',
    'phylotree_pub',
    'project',
    'protocol',
    'protocolparam',
    'pub',
    'pub_dbxref',
    'pub_relationship',
    'pubauthor',
    'pubprop',
    'quantification',
    'quantification_relationship',
    'quantificationprop',
    'stock',
    'stock_cvterm',
    'stock_dbxref',
    'stock_genotype',
    'stock_pub',
    'stock_relationship',
    'stock_relationship_pub',
    'stockcollection',
    'stockcollection_stock',
    'stockcollectionprop',
    'stockprop',
    'stockprop_pub',
    'study',
    'study_assay',
    'studydesign',
    'studydesignprop',
    'studyfactor',
    'studyfactorvalue',
    'studyprop',
    'studyprop_feature',
    'synonym',
    'tableinfo',
    'treatment'
  );
  return $tables;
}