Difference between revisions of "Annotator Dataset Workflow Howto"

From NCBO Wiki
Jump to navigation Jump to search
Line 210: Line 210:
 
</pre>
 
</pre>
  
[[Category:NCBO Virtual Machine Image]]
+
[[Category:NCBO Virtual Appliance]]

Revision as of 18:26, 25 October 2010

Introduction

Once you have submitted some ontologies into the BioPortal Ontology Services (BioPortal Core), you can use these to populate the Annotator using the classes, terms, relations, and semantic types. The population is done in two major steps: 1) Synchronize data from BioPortal Core and 2) Create the dictionary file for use with MGREP. A third step, populating mapping information, should be done if there are mappings available.

Synchronize Ontology Data with Ontology Services

The ontologies and related data that will be used with the Annotator is gathered from the Ontology Services (part of BioPortal Core). This process should be run any time a new ontology (or a new version of an existing ontology) is added to the Ontology Services, though it could theoretically be run from a cron script or scheduled job.

  1. Remove out-dated ontologies from Annotator Database (e.g. older version of ontologies that does not in BioPortal anymore). By invoking this restlet, it will remove all the outdated ontology data and the associated entities such as concepts, terms, relations, semantic types and hierarchy information.

    See the list of ontologies/versions to be removed: http://example/obs/admin/ontologies/list/old
    Remove old ontologies: http://example/obs/admin/ontologies/remove

  2. Add new ontologies from BioPortal to Annotator. By invoking this restlet, it will add all the new ontology data and the associated entities such as concepts, terms, relations, semantic types and hierarchy information.

    See the list of ontologies/versions to be added: http://example/obs/admin/ontologies/list/new
    Add new ontologies: http://example/obs/admin/ontologies/add

  3. Populate Concepts (For details, please refer to Chapter 2.1)

    http://example/obs/loaderBigConcepts/all

  4. Populate Hierarchy (For details, please refer to Chapter 2.2)

    http://example/obs/loaderBigPaths/all

    To monitor the progress and view any errors, refer to:

    1. The "status" field in the table obs_ontology in Annotator DB (obs_hibernate database).
    2. Check the Tomcat log (/var/logs/tomcat6/catalina.out)

Create Dictionary File

All the terms will be created as dictionary file. (Data is coming from the obs_term table)

  • Location : The directory location is specified in build.properties
  • # Dictionary File path
    obs.dictionary.path=/usr/local/tomcat6/webapps/annotator/WEB-INF/resources/dictionary/
    
  • The dictionary file is generated in several chunks to avoid memory problems. There is a 1,000,000 term limit per file.
  • Generate the dictionary file:
  • http://example/obs/createDictionary/0
    
  • After the files are generated, they will need to be concatenated together. Additionally, the MGREP server will need to be restarted.

Mapping Data Population

Mappings between ontologies can be used in the Annotator to find related terms. Loading the mapping information is currently a manual process, though this will be automated in the future. If you have mapping data you would like to include in annotator, please contact NCBO.

Appendix

Data Population - Concepts and Hierarchy

Introduction: the Annotator application pulls the ontology and the concept data from BioPortal Core via the REST services, then extracts and computes the hierarchy information, and finally stores the information in the Annotator Database. Then this computed data is accessible via the Annotator REST services.

Data population is divided into two parts: 1) Concepts and 2) Hierarchy. Please see below for details on these two population procedures.

Concepts and Direct Relation (level == 1)

Pre-requisite in "status":

The ontology should be in valid status ("status = 3") in the obs_ontology table in Annotator Database to start this process (i.e. This is the initial status from BioPortal Core when ontology is successfully parsed). This is also serves as a safety lock to avoid launching population again for ontologies that are already in the process of population or already populated.

REST calls available
  1. For all ontologies: populate all ontologies with valid status ("status = 3") currently stored in Annotator DB (ontologies are added during the synchronization process).
    http://example/obs/loaderBigConcepts/all
  2. For a specific ontology: populate the given ontology if "status = 3". Otherwise the data population process will complain that the status is invalid in the Tomcat log and exit.
    http://example/obs/loaderBigConcepts/{ontology_versoin_id}
Troubleshooting

Errors are logged both in Tomcat catalina.out and DB (obs_error_queue table).

  1. Case 1: BioPortal REST Service is Down

    When you kick off the process using the Annotator REST call - either via web browser or shell script - it checks first if BioPortal REST service is alive. If the BioPortal REST service is down – the tomcat log will generate an error message about BioPortal REST service being down (But it does not change the ontology "status" field. Just simply kick off the process again when BioPortal REST service is back up. If BioPortal REST service is down, no change in Annotator database, therefore no need to clean up. See "Error Handling" for the "status" change scenario).

  2. Case 2: Critical Error

    If the error is critical – RunTimeException and etc – the "status" the ontology in obs_ontology table becomes "99" and the data population process halts.

  3. Case 3: Non-critical Error

    If the error is not critical, the "status" the ontology in obs_ontology table becomes "99" but the data population process still continues to populate the rest of the data. An example for a non-critical error is a discrepancy between the data from two different BioPortal REST calls – i.e. Some of the root concepts from getRootConcepts call are missing in BioPortal (The list of concepts from getAllConcepts does not have some of the root concepts).

In the case of case 2 & 3, data clean up may be necessary. Please see "Data Clean-Up".

Indirect Relation Hierarchy (level > 1)

Pre-requisite in "status":

The ontology should be in valid status ("status = 14") in obs_ontology table in Annotator Database to start this process (i.e. "loaderBigConcepts" should have been completed for the given ontology). This is a safety lock to avoid launching population again for the ontologies already in the process of population or already populated.

REST calls available:
  1. For all ontologies: populate all ontologies with "status = 14"
    http://example/obs/loaderBigPaths/all
  2. For a specific ontology: populate the given ontology if "status = 14". Otherwise the data population process will complain that the status is invalid in the Tomcat log and exit.
    http://example/obs/loaderBigPaths/{ontology_version_id}
    e.g. http://example/obs/loaderBigPaths/40671

Monitoring the Progress

To monitor the progress, please see "status" field in obs_ontology table.

Restlets Status Required (valid status required to begin the process) Status Start -> Finish
loaderBigConcepts 3 11 -> 14
loaderBigPaths 14 21 -> 28
(status value in obs_ontology table changes as progress continues)
Error Handling:
  • If there is any error, the status will be set to 99
  • If critical error (e.g. BioPortal REST services down) occurs, the population process will stop and exit. But if it is NOT a critical error (e.g. if the semantic type description is not found from semantic look up table etc), it will mark the status to 99, log the error (both Tomcat log and DB obs_error_queue), but continue with the population.
  • To restart the process, just run the script to clean up. The script will reset the status either to "3" or "14" depending on Concept clean up or Hierarchy clean up. (See Section II. Data Clean up)

Data Clean-Up

The source for several SQL commands that can be used to clean up data after an aborted population attempt is located in /ncbo/sources/annotator/2004/db/sql/obs_db_cleanup.sqlDO NOT RUN the entire script since this is just compiled list of commands.

/* 
	----------------------------------------------------------------------- 
 	to clean up or undo everything on one ontology, just run #1 and #2	
 	-----------------------------------------------------------------------
 	1. Rollback BPConceptManager. 											
 	Run this to rollback to initial state - to undo 'loaderConcepts' restlet	
*/

set @var_ontology_version_id := '39545'; 

delete a.* from obs_relation a, obs_concept b, obs_ontology c 
	where a.level = 1 and a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = @var_ontology_version_id;

delete a.* from obs_term a, obs_concept b, obs_ontology c 
	where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = @var_ontology_version_id;
	
delete a.* from obs_semantic_type a, obs_concept b,  obs_ontology c   
	where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = @var_ontology_version_id;

delete a.* from obs_concept a, obs_ontology b
	where a.ontology_id = b.id and b.local_ontology_id = @var_ontology_version_id;
	
UPDATE obs_ontology set status = 3 where local_ontology_id = @var_ontology_version_id;

/* 
	----------------------------------------------------------------------- 	
 	2. Rollback BPPathManager. 											
 	Run this to rollback - to undo 'loaderPaths' restlet  		 			
*/

set @var_ontology_version_id := '39545'; 

delete a.* from obs_relation a, obs_concept b, obs_ontology c 
	where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = @var_ontology_version_id and a.level > 1;
	
delete a.* from obs_path_to_root a, obs_concept b, obs_ontology c 
	where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = @var_ontology_version_id;
	
delete a.* from obs_path_to_leaf a, obs_concept b, obs_ontology c 
	where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = @var_ontology_version_id;
	
UPDATE obs_ontology set status = 14 where local_ontology_id = @var_ontology_version_id;		

Useful SQL Queries for Monitoring and Validation

The source for several queries that can be used for monitoring and data validation is located in /ncbo/sources/annotator/2004/db/sql/obs_db_cleanup.sql (In the same file as the Data Clean-Up)

Number of concepts for a specific Ontology

select count(*) from obs_concept a, obs_ontology b
	where a.ontology_id = b.id and b.local_ontology_id = '40261';

Number of total relations or path_to_root/leaf for a specific ontology (to see the progress) – by looking at how fast the number is growing

	
select count(*) from obs_relation a, obs_concept b, obs_ontology c
  where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = '40133' and a.level > 1;

select a.*, b.local_concept_id from obs_path_to_root a, obs_concept b, obs_ontology c 
	where a.concept_id = b.id and b.ontology_id = c.id and c.local_ontology_id = '40483';

Ontologies that have the status "Ready" (28) but have no concepts in obs_concept table

SELECT o.*, c.ontology_id
FROM obs_ontology o
LEFT OUTER JOIN (
    SELECT DISTINCT ontology_id FROM obs_concept
) c ON o.id = c.ontology_id
WHERE o.status = 28 AND c.ontology_id IS NULL;