function tripal_update_cvtermpath

2.x tripal_cv.api.inc tripal_update_cvtermpath($cv_id, $job_id = NULL)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_update_cvtermpath($cv_id, $job_id = null)

Duplicate of fill_cvtermpath() stored procedure in Chado.

Identifies all of the root terms of the controlled vocabulary. These root terms are then processed by calling the chado_update_cvtermpath_root_loop() function on each one.

Parameters

$cvid: The controlled vocabulary ID from the cv table of Chado (i.e. cv.cv_id).

$job_id:

1 call to tripal_update_cvtermpath()
1 string reference to 'tripal_update_cvtermpath'

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 222
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_update_cvtermpath($cv_id, $job_id = null) {
  chado_update_cvtermpath($cv_id, $job_id);
}