function tripal_cv_obo_quiterror

2.x tripal_cv.obo_loader.inc tripal_cv_obo_quiterror($message)
1.x obo_loader.inc tripal_cv_obo_quiterror($message)

Immediately terminates loading of the OBO file.

Parameters

$message: The error message to present to the user

Related topics

9 calls to tripal_cv_obo_quiterror()
tripal_cv_load_obo_v1_2 in tripal_cv/includes/tripal_cv.obo_loader.inc
Imports a given OBO file into Chado. This function is usually called by one of three wrapper functions: tripal_cv_load_obo_v1_2_id, tripal_cv_load_obo_v1_2_file or tirpal_cv_load_obo_v1_2_url. But, it can be called directly if the full path to an…
tripal_cv_load_obo_v1_2_url in tripal_cv/includes/tripal_cv.obo_loader.inc
A wrapper function for importing the user specified OBO file into Chado by specifying the remote URL of the OBO. It requires that the file be in OBO v1.2 compatible format. This function is typically executed via the Tripal jobs management after a…
tripal_cv_obo_add_cvterm_dbxref in tripal_cv/includes/tripal_cv.obo_loader.inc
Adds a database reference to a cvterm
tripal_cv_obo_add_cvterm_prop in tripal_cv/includes/tripal_cv.obo_loader.inc
Adds a property to a cvterm
tripal_cv_obo_add_dbxref in tripal_cv/includes/tripal_cv.obo_loader.inc
Adds a database cross reference to a cvterm

... See full list

File

tripal_cv/includes/tripal_cv.obo_loader.inc, line 603
Functions to aid in loading ontologies into the chado cv module

Code

function tripal_cv_obo_quiterror($message) {

  tripal_report_error("T_obo_loader", TRIPAL_ERROR, $message, array());
  exit;

}