Difference between revisions of "Annotator User Guide"

From NCBO Wiki
Jump to navigation Jump to search
(Replaced content with "This service has been replaced. Instead please see: http://data.bioontology.org/documentation#nav_annotator")
 
(41 intermediate revisions by 5 users not shown)
Line 1: Line 1:
===Sample HTTP Client for the Annotator Web Service===
+
This service has been replaced. Instead please see:
  
HTML http://rest.bioontology.org/test_oba.html
+
http://data.bioontology.org/documentation#nav_annotator
 
 
===Service endpoint===
 
 
 
POST your requests at http://rest.bioontology.org/obs_hibernate/annotator
 
 
 
===Web Service Parameters===
 
 
 
The Annotator Web service offers a set of parameters that allows a user to customize the annotator work flow and filter the result. To customize the work flow and the result, the user can specify a set of ontologies and a specific set of semantic types. Plus, the two steps of the annotation work flow can be parametrized.
 
 
 
The Annotator Web service level agreement (e.g., response time) depends on the selected components as each consumes resources at a different level. For example, the ''is_a'' transitive closure takes a long time to process, even when using a pre-computed hierarchy table. As another example, an annotation with ''wholeWordOnly=false'' will be significantly longer that with ''wholeWordOnly=true''.
 
 
 
Please see below for the list of parameters and the possible values.
 
 
 
 
 
{| border="1" cellpadding="2"
 
|-valign="top"
 
|width="10%"|'''longestOnly'''
 
|width="10%"|{true, false}
 
|width="10%"|default: false
 
|width="70%"|Specifies either or not the concept recognition step (done with University of Michigan Mgrep tool) must match the longest words only if they are several concepts that match to an expression.
 
 
 
* For example: If ''longestOnly=true'', the phrase 'skin neoplasms'  will match the concept NCI/C0037286 (Skin Neoplasms) and NCI/C0027651 (Neoplasms) only. If ''longestOnly=false'', the concept NCI/C1123023(Skin) will also match in addition.
 
 
 
|-valign="top"
 
|width="10%"|'''wholeWordOnly'''
 
|width="10%"|{true, false}
 
|width="10%"|default: true
 
|width="70%"|Specifies whether the concept recognition step must match whole words only or not, if they are several concepts that match to a given word.
 
* For example: If ''wholeWordOnly=true'', the phrase 'neoplasms'  will match the concept NCI/C0027651 (Neoplasms) only. If ''wholeWordOnly=false'', the concept NCI/C1551054 (S) or the concept NCI/C0242536 (ASM) will also match (~80 concepts in NCI) in addition.
 
* Note that the concept recognition step does not consider text cast.
 
|-valign="top"
 
|width="10%"|'''stopWords'''
 
|width="10%"|{stopWord1,...,stopWordN}
 
|width="10%"|default: empty (i.e. none)
 
|width="70%"|Specifies the list of stop words to use. 
 
|-valign="top"
 
|width="10%"|'''withDefaultStopWords'''
 
|width="10%"|{true, false}
 
|width="10%"|default: false
 
|width="70%"|Specifies whether to use stop words or not. The default stop word list are available from sample HTML page. If set to true, this override the value of stopWords given by the user.
 
|-valign="top"
 
|width="10%"|'''scored'''
 
|width="10%"|{true, false}
 
|width="10%"|default: true
 
|width="70%"|Specifies either or not the annotations are scored. A score is a number assigned to an annotation that reflects the accuracy of the annotation. The higher the score is the better the annotation is. The scoring algorithm gives a specific weight to an annotation according to the context of this annotation. For instance, an annotation done by matching a concept preferred name will be given a higher weight than an annotation done by matching a concept synonym or than an annotation done with a parent level 3 in the is_a hierarchy. Details on the scoring algorithm are given in section Scoring algorithm.
 
* For example, the phrase 'melanoma' is annotated both with the concept NCI/C0025202 (melanoma) and the concept NCI/C1522102 (Mouse Melanoma). The former annotation is scored 10 where as the latter is scored 8.
 
|-valign="top"
 
|width="10%"|'''ontologiesToExpand'''
 
|width="10%"|{localOntology1,...,localOntologyN}
 
|width="10%"|default: empty (i.e. all ontologies)
 
|width="70%"|Specifies the list of ontologies to use to expand in the annotation process. The list of ontologies that can be used is available in the sample HTML page. The values are separated with comma (without spaces)
 
* For example, SNOMEDCT,NCI,13578,36625,MSH.
 
|-valign="top"
 
|width="10%"|'''ontologiesToKeepInResult'''
 
|width="10%"|{localOntology1,...,localOntologyN}
 
|width="10%"|default: empty (i.e. all ontologies)
 
|width="70%"|Specifies the list of ontologies you want to filter in the result from the annotation process. The list of ontologies that can be used is available in the sample HTML page. The values are separated with comma (without spaces)
 
* For example, SNOMEDCT,NCI,MSH.
 
|-valign="top"
 
|width="10%"|'''semanticTypes'''
 
|width="10%"|{semanticType1,...,semanticTypeN}
 
|width="10%"|default: empty (i.e. all semanticTypes)
 
|width="70%"|Specifies the list of semantic types to use in the annotation process. The list of semantic types that can be used is available at the /obs/semanticTypes URL. Note that the restriction to semantic types is also applied during the semantic expansion steps.
 
* For example, T047,T048,T191.
 
|-valign="top"
 
|width="10%"|'''levelMax'''
 
|width="10%"|{integer}
 
|width="10%"|default: 0
 
|width="70%"|Specifies the minimum (resp. maximum) level a parent concept must have to be considered for the is_a semantic closure expansion step.
 
* For example, an annotation done with levelMin=1 & levelMax=3 will expand a direct annotations done with a concept up to the 3rd level parent in the is_a hierarchy for this concept. An annotation done with levelMin=0 & levelMax=0 is equivalent to disable the is_a transitive closure expansion step.
 
|-valign="top"
 
|width="10%"|'''mappingTypes'''
 
|width="10%"|{null,mappingType1,...,mappingTypeN}
 
|width="10%"|default: empty (i.e. all mappingTypes)
 
|width="70%"|Specifies the list of mapping type to use during the mapping expansion step. The list of rmapping types that can be used is available at the /obs/mappingTypes URL. The current list is described in section Mapping types.
 
* For example, from-mrrel,Human.
 
* Note that the use of the key word "'''null'''" in the mappingTypes list disables the mapping expansion component. Note also that the mapping expansion is also limited by other parameters such as ''ontologiesToExpand'' and ''ontologiesToKeepInResult''.
 
 
 
|-valign="top"
 
|width="10%"|'''textToAnnotate'''
 
|width="10%"|
 
|width="10%"|
 
|width="70%"|Specifies the text to be annotated
 
|-valign="top"
 
|width="10%"|'''format'''
 
|width="10%"|{xml,text,tabDelimited}
 
|width="10%"|default: xml
 
|width="70%"|Specifies the desired format of the response from Annotator Restlet.
 
 
 
|}
 
 
 
 
 
===Web Service Response===
 
 
 
'''Response Format'''
 
{| border="1" cellpadding="2"
 
|-valign="top"
 
|width="10%"|'''xml'''
 
|width="90%"| returns XML representation of the annotatorResultBean.
 
|-valign="top"
 
|width="10%"|'''text'''
 
|width="90%"| returns plain text representation of the annotatorResultBean.
 
|-valign="top"
 
|width="10%"|'''tabDelimited'''
 
|width="90%"| shorter version of "Text" format. returns not the full result content but the annotations only (no statistics, etc.). The format of the tab delimited file is: score \t conceptId \t preferredName \t synonyms (separated by ' /// ') \t semanticType (separated by ' /// ') \t contextName \t isDirect \t other context information (e.g., childConceptID, mappedConceptID, level, mappingType) (separated by ' /// ').
 
|}
 
 
 
 
 
'''Response Content: annotatorResultBean'''
 
{| border="1" cellpadding="2"
 
|-valign="top"
 
|width="10%"|'''resultID'''
 
|width="90%"|
 
|-valign="top"
 
|width="10%"|'''dictionary'''
 
|width="90%"| Dictionary contains the metadata (not the content) of the dictionary used for a result. dictionaryID, dictionaryName, and dictionaryDate identify the dictionary on the server side and give information about its content. Dictionary versioning is strongly linked to the evolution of the ontologies used. Each time ontologies change, the dictionary is updated. All the dictionary information may be useful for comparing results of the Annotator Restlet service on time.
 
|-valign="top"
 
|width="10%"|'''statistics'''
 
|width="90%"| Statistics contains information on the number of annotations done for a given context. The contextName keyword identifies the type of context and nbAnnotation is the number of annotations of this type.
 
|-valign="top"
 
|width="10%"|'''parameters'''
 
|width="90%"| Parameters summarizes all the parameters specified by the user when requesting the Annotator Restlet service. Those parameters are described in section Service parameters
 
|-valign="top"
 
|width="10%"|'''ontologies'''
 
|width="90%"| To keep the model simple, we provide only the global ontology identifier, localOntologyID the name (ontologyName) and version (ontologyVersion). This information come from the original repositories (UMLS/BioPortal) and might help the user to select the right ontology to use. When an ontology is used in the annotation, a result has a set of OntologyUsed which specify 2 other properties: nbAnnotation, the number of annotation that have been made with concepts from this ontology. score, the sum of all the scores of the annotations done with concepts from this ontology (if parameter scored=true). Therefore, score represents the most accurate ontology to annotate the given text.
 
|-valign="top"
 
|width="10%"|'''annotations'''
 
|width="90%"| Annotation is a representation of one annotation. An annotation has a score which represents the accuracy of the annotation computed by the scoring algorithm (if the scored=true parameter was chosen, otherwise score=-1). An annotation is done with a concept in a context.
 
 
 
{| border="2" <!-- The nested table must be on a new line -->
 
|-valign="top"
 
|width="10%"|'''score'''
 
|width="90%"|
 
|-valign="top"
 
|width="10%"|'''concept'''
 
|width="90%"|
 
* ''localConceptID'' - global identifier for the concept in its original repository.
 
* ''localOntologyID'' - identifier for the ontology in which the concept is defined.
 
* ''isTopLevel'' - specifies if the concept is a root concept in its ontology.
 
* ''preferredName'' - label or preferred term for this concept (as assigned by the original repository).
 
* ''synonyms'' - the set of possible terms that represent the concept but are not preferred.
 
* ''semanticTypes'' - the set of the semantic types of the concept (assigned by UMLS + T000 and T999).
 
|-valign="top"
 
|width="10%"|'''context'''
 
|width="90%"| Context specifies if it is a direct or expanded annotation and give precision about the origin of the annotation. ''contextName'' identifies the type of context. The context properties vary with the type of concept. There are 3 possible contexts identified by their contextName:
 
{| border="2" style="background:#ABCDEF;" <!-- The nested table must be on a new line -->
 
|-valign="top"
 
|width="10%"|'''MGREP'''
 
|width="90%"| represents direct annotations done with the Mgrep concept recognizer. A MGREP context has 3 properties:
 
* ''termName'' - the expression (preferred name or synonyms) that was matched by Mgrep.
 
* ''from'' and ''to'' - specify the character index in the given text for the matched expression.
 
|-valign="top"
 
|width="10%"|'''ISA_CLOSURE'''
 
|width="90%"| represents  expanded annotations done with the ''is_a'' transitive closure expansion component. A ISA_CLOSURE context has 2 properties:
 
* ''childConceptID'' - the concept from which the annotation was derived.
 
* ''level'' - the distance in the is_a hierarchy between the annotating concept and the concept from which the annotation was derived.
 
* For example, if a direct annotation with NCI/C0025202 (melanoma) was done, the is_a transitive closure component may expand it to another annotation with NCI/C1302746 (Melanocytic Neoplasm) because the latter is a direct parent (i.e., level 1) concept of the former. The ISA_CLOSURE annotation generated will have the following properties {NCI/C0025202, 1}.
 
|-valign="top"
 
|width="10%"|'''MAPPING'''
 
|width="90%"| represents expanded annotations done with the mapping expansion component. A MAPPING context has 2 properties:
 
* mappedConceptID identifies the concept from which the annotation was derived.
 
* mappingType specifies the type of mapping.
 
|}
 
|}
 
|}
 

Latest revision as of 15:46, 3 March 2014

This service has been replaced. Instead please see:

http://data.bioontology.org/documentation#nav_annotator