Difference between revisions of "Resource Index REST Web Service User Guide"

From NCBO Wiki
Jump to navigation Jump to search
Line 158: Line 158:
 
|-valign="top"
 
|-valign="top"
 
|width="10%"|'''format'''
 
|width="10%"|'''format'''
|width="10%"|{text,tabDelimited, xml}
+
|width="10%"|{text, tabDelimited, owl, xml}
 
|width="10%"|default: xml
 
|width="10%"|default: xml
 
|width="70%"|Specifies the desired format of the response.
 
|width="70%"|Specifies the desired format of the response.

Revision as of 09:40, 14 July 2010

Introduction

The Resource Index API is available through a REST web services interface.

This documentation describes the current version of the API. Some changes may append in the future.

The Resource index API is based on the web service that returns annotations from the Resource Index (called via a REST post). Additionally some simplified REST get services returned simplified results.


Attention, this documentation is not currently in sync with the deployed version... we plan to release pretty soon the new API (that goes with this documentation). Please refer to the history of this wiki page for old documentation.


Sample HTTP Client for the Resource Index REST Web Service

Test HTML Page : http://rest.bioontology.org/resource_index/test

Resources Service Page : http://rest.bioontology.org/resource_index/resources/list/

Service endpoint

http://rest.bioontology.org/resource_index/

POST calls

POST your requests at the service endpoint.

Parameters

The Resource Index web service offers a set of parameters that allows a user to customize the annotations returned according to his specific requirements. For example, the annotations returned can be limited to a specific set of ontology and a specific set of semantic types. Plus, the expanded annotations can be filtered.

Please see below for the list of parameters and the possible values.

Note** : Parameter email and applicationid applies to all POST and GET calls.

email** {email id} default: null User identification query parameter with the pattern of "email=UserEmail" (note some clients may need to use URL encoding).For example, email=example@example.org or email=example%40example.org as an encoded email.
applicationid** {aplicationid} default: null Identifies the application calling the REST service.
ontologiesToKeepInResult {localOntology1,...,localOntologyN} default: empty (i.e. all ontologies) 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, 42789,42838,42142.
semanticTypes {semanticType1,...,semanticTypeN} default: empty (i.e. all semanticTypes) Specifies the list of UMLS 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.
levelMax {integer} default: 0 Specifies the maximum level a parent concept must have to be considered for the is_a semantic closure expansion step.
  • For example, an annotation done with 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 levelMax=0 is equivalent to disable the is_a transitive closure expansion step.
mappingTypes {null,mappingType1,...,mappingTypeN} default: empty (i.e. all mappingTypes) Specifies the list of mapping types 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, Automatic,Manual.
  • Note that the use of the key word "null" in the mappingTypes list disables the mapping expansion component.
filterNumber {true, false} default: true Specifies whether the concept recognition step to filter numbers or not.
minTermSize {integer} default: 0 Specifies the minimum length of the term to be included in the annotations.
withSynonyms {true, false} default: true Specifies either or not the direct annotations are done with or without Synonyms. By default it includes all the synonyms and preferred name. If 'false' is selected, the direct annotations are done with only preferred name.
additionalStopWords {stopWord1,...,stopWordN} default: empty (i.e. none) Specifies the list of additional stop words to use. Already used stop words are available here: [[1]]
isStopWordsCaseSenstive {true, false} default: false Specifies whether stopwords are case-sensitive or not.
conceptids {conceptid1,...,conceptidn} default: empty (i.e. all concepts) Specifies the list of concept to use to query the Resource index (i.e., get the annotations done with this list). This parameter must be jointly specified with the mode parameter. If conceptids contains only one element then the mode parameter can be ignored. The values are separated with comma (without spaces).
  • For example, 40401/D008545,4513/Virtual_surface.
isVirtualOntologyId {true, false} default: false Specifies the if the list of ontologies are all BioPortal virtual ontology IDs. This parameter applies to both conceptids and ontologiesToKeepInResult parameters.
mode {union, intersection} default: union Specifies the mode to use when querying the resource index with several concept (parameter conceptids ). The union mode returns the union of all the annotations (filtered eventually with other parameters) done with each specified conceptid. The intersection mode returns the intersection.
elementid default: all Specifies the identifier of the resource element for which annotations are requested. The elementid is defined by the original resource e.g., PMID for PubMed, NCT for ClinicalTrials. The full list of the elementid type is defined in Section Local element ID used.
  • For example, NCT00001589 or GDS2735.
resourceid default: all Specifies the resource to filter the annotations with. The resourceid identifies a resource in the Resource Index. They are defined in section Resource identifiers. The list of resourceid can be used is available at the /obs/resources URL.
  • For example, GEO,CT,AE.
elementDetails {true, false} default: false Specifies the if the returned resource elements to be detailed or not.
withContext {true, false} default: true Specifies whether the annotations context information to be available or not. If turn to false, the set of annotations returned will be simplified and will not detail the context information for an annotation. Only the score will be returned.
from and number {real_number} default: 0/10 respectively Specifies an offset of annotations defined by from and number.
format {text, tabDelimited, owl, xml} default: xml Specifies the desired format of the response.

Web Service Response

Response Format

xml returns XML representation of the ObrResultBeanDetailled.
text returns plain text representation of the ObrResultBeanDetailled.
tabDelimited 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 ' /// ').

Note : if request parameter withContext is true, then returns representation of the ObrResultBeanDetailled and if request parameter withContext is false, then returns representation of the ObrResultBean.

Response Content: ObrResultBeanDetailled

Response ObrResultBeanDetailled contains all the contents of ObrResultBean. Those contents are described in section Response Content: ObrResultBean.

Following are remaining contents for ObrResultBeanDetailled :

directAnnotations ObrAnnotationBean is a representation of one annotation.
isaAnnotations ObrAnnotationBean is a representation of one annotation.
mappingAnnotations ObrAnnotationBean is a representation of one annotation.

Note : Response contents of the ObrAnnotationBean are described in section ObrResultBean annotations


Response Content: ObrResultBean

resultID
dictionary 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.
statistics 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.
parameters Parameters summarizes all the parameters specified by the user when requesting the Annotator Restlet service. Those parameters are described in section Service parameters
ontologies 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.
annotations ObrAnnotationBean/ObrAnnotationBeanDetailled is a representation of one annotation. If elementDetails parameter is true the service return response of type ObrAnnotationBean ,otherwise ObrAnnotationBeanDetailled. 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.

Response Content: ObrAnnotationBeanDetailled

Response ObrAnnotationBeanDetailled contains all the contents of ObrAnnotationBean. Those contents are described in section Response Content: ObrAnnotationBean.

Following are remaining contents for ObrAnnotationBeanDetailled :

element
  • localElementID - Global identifier for the resource element.
  • elementStructure - Represents Structure of an element for a given resource.

Response Content: Structure

resourceID resource identifier for Resource.
contexts list of context for resource.
itemKeys list of itemKeys for resource.
weights map contain weights (as double) for each context (as String).
ontoIDs map contain ontologyIDs for each context (as String).

Response Content: ObrAnnotationBean

localElementID Identifier for resource element.
score
concept
  • 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).
context 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:
MGREP 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.
ISA_CLOSURE 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.
  • from and to - specify the character index in the given text for the matched expression.
  • 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}.
MAPPING 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.
  • from and to - specify the character index in the given text for the matched expression.
localElementID localConceptIDs mode withContext elementDetails counts offsetStart offsetMax Parameters summarizes all the parameters specified by the user when requesting the Resource Index Restlet service. Those parameters are described in section Service parameters


GET calls

Following section describes all other simplified GET services available in Resource_Index_API.

Annotation by Concept Service

Returns the set of annotations done with a given localConceptID.

  • Response Content : ObrResultBean/ObrResultBeanDetailled. If request parameter withContext is true, then returns representation of the ObrResultBeanDetailled and if request parameter withContext is false, then returns representation of the ObrResultBean.

Annotation for BioPortal virtual ontology Concept Service

Returns the set of all annotations done with a given localConceptID using BioPortal virtual ontology ID.

  • Response Content : ObrResultBean/ObrResultBeanDetailled.

Annotation By Concept And Resource Service

Returns the set of all annotations done with a given localConceptID for given resourceID.

  • Response Content : ObrResultBean/ObrResultBeanDetailled.

Annotation for BioPortal virtual ontology Concept And Resource Service

Returns the set of all annotations done with a given localConceptID using BioPortal virtual ontology ID and using particular resourceID.

  • Response Content : ObrResultBean/ObrResultBeanDetailled.

Annotation By Resource Element Service

Returns the set of all annotations done with a given resource element localElementID for all the concepts.

  • Old Request Format* :
    • /byelement/{resourceID}/{withContext}/{counts}/{from}/{number}?elementID={localElementID}
    • /byelement/{resourceID}/{localElementID}/{withContext}/{counts}/{from}/{number}
  • Response Content : ObrResultBean/ObrResultBeanDetailled.

Annotation Details By Resource Element Service

Returns the set of all annotations details with a given resource element localElementID for given conceptID

  • Response Content : ObrAnnotationBeanDetailled if elementDetails is true otherwise ObrAnnotationBean

Annotation Details By Resource Element Service for BioPortal Virtual OntologyID

Returns the set of all annotations details with a given resource element localElementID for given conceptID of BioPortal virtual ontologyID

  • Response Content : ObrAnnotationBeanDetailled if elementDetails is true otherwise ObrAnnotationBean.

Resources Service

Returns the set of all resources available in resource index and information related to it.

  • Response Content : Resource is a representation of one resource

Response Content: Resource

resourceName Name of the particular resource.
resourceID Identifier of the resource.
mainContext Main context string for the resource.
resourceURL Website URL for the resource
resourceElementURL Base URL for getting elements for resource.
resourceDescription Description of the resource.
resourceLogo URL of logo image for the resource.
resourceStructure Represents Structure of an element for the resource.

Response Content: Structure

resourceID resource identifier for Resource.
contexts list of context for resource.
itemKeys list of itemKeys for resource.
weights map contain weights (as double) for each context (as String).
ontoIDs map contain ontologyIDs for each context (as String).

Resource Service

Returns the resource in resource index for given resourceID and information related to it.

Resource Element Service

Service returns elementURL for given localElementID and redirect it to get resource element on the web.

Element details service by elementid

Retruns detail for given element using resource id and element id

  • Response Content : element

Resources Service with ontologies used for indexing

Returns the set of all resources available in resource index and list of onotolgies used for indexing them.

Response Content: ObrResourceBean

Response ObrResourceBean contains all the contents of Resource. Those contents are described in section Response Content: Resource.

Following are remaining contents for ObrResourceBean :

ontologiesUsed Presents list of ontologies used for indexing. Each ontology of type OntologyBean.

Response Content: OntologyBean

localOntologyID Local onotology id for Ontology.
ontologyName name of the resource.
ontologyVersion version number for resource.
virtualOntologyID virtual ontology id for ontology.

Resource Service with ontologies used for indexing

Returns the information about resources and list of onotolgies used for indexing it.

Ontologies Service with resources indexed

Returns the set of all ontologies used in resource index with list of resources indexed by given ontology.

  • Response Content : Each Ontology is represented by ObrOntologyBean.

Response ObrOntologyBean contains all the contents of OntologyBean.Those contents are described in section Response Content: OntologyBean.

Following are remaining contents for ObrResourceBean :

resources Represents list of resources. Response content for each resource is of type Resource.

Ontology Service with resources indexed

Returns the information about given ontologies used in resource index with list of resources.

  • Response Content : Ontology is represented by ObrOntologyBean.

All Statistics Service

Returns the information about number of all the annotations done in resource index.

  • Response Content : All annotations represented by ObrStatisticsBean.

Response Content: ObrStatisticsBean Following are remaining contents for ObrStatisticsBean:

aggregatedAnnotations Sum of the number of rows in all the indexing tables
mgrepAnnotations Number of mgrep annotations entries in direct annotation table.
reportedAnnotations Number of reported annotations entries in direct annotation table.
isaAnnotations Number of is-a annotations entries in extended annotation table.
mappingAnnotations Number of mapping annotations entries in extended annotation table.

Ontology Statistics Service

Returns the total statistics for given ontology for All resources.

  • Response Content : Ontology statistics with format ObrOntologyStatisticsBean.

Response Content: ObrOntologyStatisticsBean Following are contents for ObrOntologyStatisticsBean:

resourceID Resource Id for resource.
statistics ObrStatisticsBean is a representation of statistics

Ontology Statistics Service by resources

Returns the statistics for given ontology for each resource separately.

  • Response Content : ObrOntologyStatisticsBean

Resource Statistics Service

Returns the total statistics for given resource for All ontology.

  • Response Content : Resource statistics with format ObrResourceStatisticsBean.

Response Content: ObrResourceStatisticsBean Following are contents for ObrResourceStatisticsBean:

localOntologyID local ontology id for given ontology.
statistics ObrStatisticsBean is a representation of statistics

Resource Statistics Service by ontologies

Returns the statistics for given resource for each ontology separately.

  • Response Content : Resource statistics with format ObrResourceStatisticsBean.



Note* : Old Request Format not working anymore.