array(
'label' => t('Chado storage'),
'module' => 'tripal_chado',
'description' => t('Integrates terms stored in the local Chado database with Tripal entities.'),
'settings' => array(),
),
);
}
/**
* Implements hook_vocab_get_term().
*/
function tripal_chado_vocab_get_term($namespace, $accession) {
// Create an empty term array for returning if there is a problem.
$empty_term = array(
'namespace' => $namespace,
'accession' => $accession,
'name' => '',
'definition' => 'Term is undefined.',
'urlprefix' => '',
// The following are not required for the returned array but we'll
// add these for convenience later when we look at the TripalTerm
// objects and these will be there.
'cvterm' => NULL,
);
// It's possible that Chado is not available (i.e. it gets renamed
// for copying) but Tripal has already been prepared and the
// entities exist. If this is the case we don't want to run the
// commands below.
if (!chado_table_exists('cvterm')) {
return $empty_term;
}
$match = array(
'dbxref_id' => array(
'db_id' => array(
'name' => $namespace,
),
'accession' => $accession,
),
);
$cvterm = chado_generate_var('cvterm', $match);
if (!$cvterm) {
return $empty_term;
}
$cvterm = chado_expand_var($cvterm, 'field', 'cvterm.definition');
return array(
'namespace' => $cvterm->dbxref_id->db_id->name,
'accession' => $cvterm->dbxref_id->accession,
'name' => $cvterm->name,
'definition' => (isset($cvterm->definition)) ? $cvterm->definition : '',
'urlprefix' => $cvterm->dbxref_id->db_id->urlprefix,
// The following are not required for the returned array but we'll
// add these for convenience later when we look at the TripalTerm
// objects and these will be there.
'cvterm' => $cvterm,
);
}
/**
* Implements hook_vocab_import_form();
*/
function tripal_chado_vocab_import_form($form, &$form_state) {
module_load_include('inc', 'tripal_chado', 'includes/loaders/tripal_chado.obo_loader');
return tripal_cv_obo_form($form, $form_state);
}
/**
* Implements hook_vocab_import_form_validate();
*/
function tripal_chado_vocab_import_form_validate($form, &$form_state) {
module_load_include('inc', 'tripal_chado', 'includes/loaders/tripal_chado.obo_loader');
return tripal_cv_obo_form_validate($form, $form_state);
}
/**
* Implements hook_vocab_import_form_submit();
*/
function tripal_chado_vocab_import_form_submit($form, &$form_state) {
module_load_include('inc', 'tripal_chado', 'includes/loaders/tripal_chado.obo_loader');
return tripal_cv_obo_form_submit($form, $form_state);
}
/**
* Implements hook_vocab_select_term_form().
*/
function tripal_chado_vocab_select_term_form($form, &$form_state) {
$term_name = '';
$num_terms = 0;
$cv_id = '';
$terms = array();
// Set defaults using the form state.
if (array_key_exists('storage', $form_state)) {
if (array_key_exists('terms', $form_state['storage'])) {
$terms = $form_state['storage']['terms'];
}
}
$num_terms = count($terms);
// If no term has been selected yet then provide the auto complete field.
if ($num_terms == 0) {
$form['term_name'] = array(
'#title' => t('Content Type'),
'#type' => 'textfield',
'#description' => t("The content type must be the name of a term in
a controlled vocabulary and the controlled vocabulary should
already be loaded into Tripal. For example, to create a content
type for storing 'genes', use the 'gene' term from the
Sequence Ontology (SO)."),
'#required' => TRUE,
'#default_value' => $term_name,
'#autocomplete_path' => "admin/tripal/storage/term/$cv_id",
);
}
// If the term belongs to more than one vocabulary then add additional fields
// to let the user select the vocabulary.
if ($num_terms > 1) {
$form['term_name'] = array(
'#type' => 'hidden',
'#value' => $term_name,
);
$cvs = array();
foreach ($terms as $term) {
$cvs[$term->cv_id->cv_id] = 'Vocabulary: ' . $term->cv_id->name . ' (' . $term->cv_id->definition . ')
' . $term->name . ': ' . $term->definition;
}
$form['cv_id'] = array(
'#type' => 'radios',
'#title' => t('Select the appropriate vocabulary'),
'#options' => $cvs,
);
}
// Add in the button for the cases of no terms or too many.
$form['select_button'] = array(
'#type' => 'submit',
'#value' => t('Use this term'),
'#name' => 'select_cvterm'
);
return $form;
}
/**
* Implements hook_vocab_select_term_form_validate().
*/
function tripal_chado_vocab_select_term_form_validate($form, &$form_state) {
if (array_key_exists('clicked_button', $form_state) and
$form_state['clicked_button']['#name'] =='select_cvterm') {
// First, make sure the term is unique. If not then we can't check it.
$term_name = NULL;
$cv_id = NULL;
$cvterm = NULL;
if (array_key_exists('term_name', $form_state['values'])) {
$term_name = $form_state['input']['term_name'];
}
if (array_key_exists('cv_id', $form_state['input'])) {
$cv_id = $form_state['input']['cv_id'];
}
// If a term and $cv_id are provided then we can look for the term using
// both and we should find a unique term. If only ther term is provided
// we can still look for a unique term but there must only be one.
if ($term_name and !$cv_id) {
$match = array(
'name' => $term_name,
);
}
else {
$match = array(
'name' => $term_name,
'cv_id' => $cv_id,
);
}
$terms = chado_generate_var('cvterm', $match, array('return_array' => TRUE));
$form_state['storage']['terms'] = $terms;
// If we do not have any terms then the term provided by the user does not
// exists and we need to provide an error message.
if (count($terms) == 0) {
form_set_error('term_name', t('The term does not exist in this database.'));
}
// If we have more than one term then we need to set an error so that the
// form can provide a list of vocabularies to select from.
if (count($terms) > 1) {
form_set_error('term_name', t('The term is not unique. A list of vocabularies
that contain this term. Please select the most appropriate vocabulary.'));
}
// If we have a unique term then set the namespace, accession and name.
if (count($terms) == 1) {
$form_state['storage']['namespace'] = $terms[0]->dbxref_id->db_id->name;
$form_state['storage']['accession'] = $terms[0]->dbxref_id->accession;
$form_state['storage']['term_name'] = $terms[0]->name;
}
}
}