function drush_tripal_chado_trp_update_pubs

3.x tripal_chado.drush.inc drush_tripal_chado_trp_update_pubs()

Imports publications into Chado

Related topics

File

tripal_chado/tripal_chado.drush.inc, line 158
Contains function relating to drush-integration of this module.

Code

function drush_tripal_chado_trp_update_pubs() {
  $create_contacts = drush_get_option('create_contacts');
  $dbxref = drush_get_option('dbxref');
  $db = drush_get_option('db');

  module_load_include('inc', 'tripal_chado', 'includes/loaders/tripal_chado.pub_importers');
  chado_reimport_publications($create_contacts, $dbxref, $db);
}