function tripal_get_chado_semweb_column

3.x tripal_chado.DEPRECATED.api.inc tripal_get_chado_semweb_column($chado_table, $term)

Retreive the column name in a Chado table that matches a given term.

Parameters

$chado_table: The name of the Chado table.

$term: The term. This can be a term name or a unique identifer of the form {db}:{accession} or of the form {db}__{term_name}.

Return value

The name of the Chado column that matches the given term or FALSE if the term is not mapped to the Chado table.

File

tripal_chado/api/tripal_chado.DEPRECATED.api.inc, line 389
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal_chado functions.

Code

function tripal_get_chado_semweb_column($chado_table, $term) {
  chado_get_semweb_column($chado_table, $term);
}