function tripal_get_minimal_pub_info

3.x tripal_chado.module.DEPRECATED.api.inc tripal_get_minimal_pub_info($pub)

Retrieves the minimal information to uniquely describe any publication.

The returned array is an associative array where the keys are the controlled vocabulary terms in the form [vocab]:[accession].

Parameters

$pub: A publication object as created by chado_generate_var().

Return value

An array with the following keys: 'Citation', 'Abstract', 'Authors', 'URL'. All keys are term names in the Tripal Publication Ontology :TPUB.

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 1464
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_minimal_pub_info($pub) {
  chado_get_minimal_pub_info($pub);
}