Difference between revisions of "NCBO Widgets"

From NCBO Wiki
Jump to navigation Jump to search
 
(33 intermediate revisions by 5 users not shown)
Line 9: Line 9:
 
*** When a new version of your controlled vocabulary becomes available in BioPortal, the widget will automatically use that new version.
 
*** When a new version of your controlled vocabulary becomes available in BioPortal, the widget will automatically use that new version.
 
*'''[[#Ontology search widget|Ontology search widget]]''': You can add to your Web site a search box that searches a specific BioPortal ontology. When the user selects the term of interest (with the help of the look-ahead feature), he can jump to the BioPortal page for the corresponding concept in BioPortal.
 
*'''[[#Ontology search widget|Ontology search widget]]''': You can add to your Web site a search box that searches a specific BioPortal ontology. When the user selects the term of interest (with the help of the look-ahead feature), he can jump to the BioPortal page for the corresponding concept in BioPortal.
*'''[[#Feed widget|Feed widget]]''': you can put a widget on your site that will have a live feed of all the changes to your ontology of interest, such as uploads of a new version, comments from other users, new mappings for concepts in your ontology.
 
 
*'''[[#Ontology visualization widget|Ontology visualization widget]]''': You can put a widget on your Web site that visualizes your entire ontology of interest, or some part of it, as on the [http://bioportal.bioontology.org/visualize/39478#t_tab1: "Visualize" tab in BioPortal].
 
*'''[[#Ontology visualization widget|Ontology visualization widget]]''': You can put a widget on your Web site that visualizes your entire ontology of interest, or some part of it, as on the [http://bioportal.bioontology.org/visualize/39478#t_tab1: "Visualize" tab in BioPortal].
*'''[[#OntologyTree Widget|OntologyTree Widget]]''': You can put a widget on your Web site that displays the ontology tree, or some part of it, as on the [http://bioportal.bioontology.org/visualize/39478#t_tab1: "Visualize" tab in BioPortal].
+
*'''[[#NCBO Ontology Tree Widget|NCBO Ontology Tree Widget]]''': You can put a widget on your Web site that displays the ontology tree, or some part of it, as on the [http://bioportal.bioontology.org/visualize/39478#t_tab1: "Visualize" tab in BioPortal].
  
 
= How to use NCBO Widgets=
 
= How to use NCBO Widgets=
Line 24: Line 23:
 
== Term-selection field on a form ==
 
== Term-selection field on a form ==
  
To add a filed to your form that lets the user fetch a term from your ontology of interest, do the following:
+
To add a field to your form that lets the user fetch a term from your ontology of interest, do the following:
 
<ul>
 
<ul>
 
   <li>Download the [http://bioportal.bioontology.org/javascripts/widgets/form_complete.js <b>form_complete.js file</b>] and put it on your server
 
   <li>Download the [http://bioportal.bioontology.org/javascripts/widgets/form_complete.js <b>form_complete.js file</b>] and put it on your server
Line 30: Line 29:
 
   <li>In the header for the page where you want the form field, include the <b>form_complete.js</b> file
 
   <li>In the header for the page where you want the form field, include the <b>form_complete.js</b> file
 
   </li>
 
   </li>
   <li>On your form, for the fields where you want to use the term-selection widget, specify the field's class in the following format: <code>bp_form_complete-{ontology_id_list}-{value}</code>
+
   <li>On your form, for the fields where you want to use the term-selection widget, specify the field's class in the following format: <code>bp_form_complete-{ontology_acronym_list}-{value}</code>
 
     <ul>
 
     <ul>
       <li>For example, <code>bp_form_complete-1032-uri</code> will use NCI Thesaurus (ontology id is 1032) and will put the term URI in the field after the user selects the term from the pull-down list.
+
       <li>For example, <code>bp_form_complete-NCIT-uri</code> will use NCI Thesaurus (ontology acronym is NCIT) and will put the term URI in the field after the user selects the term from the pull-down list.
 
         <ul>
 
         <ul>
 
           <li>
 
           <li>
 
             <b>Note:</b> In addition to single ontology ids, you can use a list:<br>
 
             <b>Note:</b> In addition to single ontology ids, you can use a list:<br>
             <code>bp_form_complete-1032,1089-uri</code>
+
             <code>bp_form_complete-NCIT,BIRNLEX-uri</code>
 
           </li>
 
           </li>
 
           <li>
 
           <li>
Line 47: Line 46:
 
         <ul>
 
         <ul>
 
           <li>
 
           <li>
             <code>uri</code> put the complete URI of the term (e.g., <a rel="nofollow" title="http://bioportal.bioontology.org/visualize/39478/Common_Neoplasm" class="external free" href="http://bioportal.bioontology.org/visualize/39478/Common_Neoplasm">http://bioportal.bioontology.org/visualize/39478/Common_Neoplasm</a>);
+
             <code>uri</code> : put the complete URI of the term (e.g., "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#Common_Neoplasm");
 
           </li>
 
           </li>
 
           <li>
 
           <li>
             <code>shortid</code> put the short id of the term, as used in BioPortal (e.g., "Common_Neoplasm");
+
             <code>shortid</code> : put the short id of the term, as used in BioPortal (e.g., "Common_Neoplasm");
 
           </li>
 
           </li>
 
           <li>
 
           <li>
             <code>name</code> put the preferred name of the term (e.g., "Common Neoplasm");
+
             <code>name</code> : put the preferred name of the term (e.g., "Common Neoplasm");
 
           </li>
 
           </li>
 
         </ul>
 
         </ul>
 
       </li>
 
       </li>
      <li>In addition to the input element you defined, there are four hidden form elements that are created and then set when a user selects a term from the list. For example, if you create a field with this code:
+
    </ul>
 +
 
 +
==== Hidden form elements auto-generated ====
 +
In addition to the input element you defined, there are four hidden form elements that are created and then set when a user selects a term from the list. For example, if you create a field with this code:
 
<pre>
 
<pre>
 
&lt;input type="text" name="a" class="bp_form_complete-all-uri" size="100"/&gt;
 
&lt;input type="text" name="a" class="bp_form_complete-all-uri" size="100"/&gt;
 
</pre>
 
</pre>
 
The 'name' attribute is used to create the four following fields (note how the 'a' from the name attribute is appended to the id attribute):
 
The 'name' attribute is used to create the four following fields (note how the 'a' from the name attribute is appended to the id attribute):
        <ul>
 
          <li>
 
 
<pre>
 
<pre>
 
&lt;input type="hidden" id="a_bioportal_preferred_name"&gt;
 
&lt;input type="hidden" id="a_bioportal_preferred_name"&gt;
</pre>
 
          </li>
 
          <li>
 
<pre>
 
 
&lt;input type="hidden" id="a_bioportal_concept_id"&gt;
 
&lt;input type="hidden" id="a_bioportal_concept_id"&gt;
</pre>
 
          </li>
 
          <li>
 
<pre>
 
 
&lt;input type="hidden" id="a_bioportal_ontology_id"&gt;
 
&lt;input type="hidden" id="a_bioportal_ontology_id"&gt;
</pre>
 
          </li>
 
          <li>
 
<pre>
 
 
&lt;input type="hidden" id="a_bioportal_full_id"&gt;
 
&lt;input type="hidden" id="a_bioportal_full_id"&gt;
 
</pre>
 
</pre>
          </li>
+
 
        </ul>
+
==== Optional attributes ====
      </li>
+
<ul>
    </ul>
+
<li>
  </li>
+
<strong>Include term definitions.</strong>
 +
Use <code>data-bp_include_definitions="true"</code>.
 +
This will display definitions with the list of terms that are returned.  For example, use this code to display search results for 'heart' terms, with
 +
definitions, in the NCI Thesaurus.
 +
<br/>
 +
<code><input type="text" name="m" data-bp_include_definitions="true" class="bp_form_complete-NCIT-name"/></code>
 +
</li>
 +
<li>
 +
<strong>Limit lookup to terms below a root term.</strong>
 +
Use <code>data-bp_search_branch="{class_id}"</code>
 +
(replace {class_id} with the class id for the term to use as the
 +
branch root). For example, use this code to limit the search for 'heart' to terms
 +
within the 'Anatomic_Structure_System_or_Substance'
 +
branch of the NCI Thesaurus.
 +
<br/>
 +
<code><input type="text" name="n" data-bp_search_branch="Anatomic_Structure_System_or_Substance" class="bp_form_complete-NCIT-name"/></code>
 +
</li>
 +
 
 +
<li><strong>Object types</strong>
 +
  <ul>
 +
 
 +
  <li>
 +
<strong>Search 'class' and 'property' objects.</strong>
 +
Use <code>data-bp_objecttypes="class,property".</code>
 +
For example, use this code to search for 'function' among both 'class' and
 +
'property' objects from the "Adverse Event Reporting Ontology".
 +
<br/>
 +
<code><input type="text" name="o" data-bp_objecttypes="class,property" class="bp_form_complete-AERO-uri"/></code>
 +
  </li>
 +
  <li>
 +
<strong>Search only 'property' objects.</strong>
 +
Use <code>data-bp_objecttypes="property".</code>
 +
For example, use this code to search for 'function' among only
 +
'property' objects from the "Adverse Event Reporting Ontology".
 +
<br/>
 +
<code><input type="text" name="p" data-bp_objecttypes="property" class="bp_form_complete-AERO-uri"/></code>
 +
  </li>
 +
  <li>
 +
<strong>Search 'class' and 'individual' objects.</strong>
 +
Use <code>data-bp_objecttypes="class,individual".</code>
 +
For example, use this code to search for 'seizure' among 'class' and
 +
'individual' objects from the "Adverse Event Reporting Ontology".
 +
<br/>
 +
<code><input type="text" name="q" data-bp_objecttypes="class,individual" class="bp_form_complete-AERO-uri"/></code>
 +
  </li>
 +
  <li>
 +
<strong>Only search 'individual' objects.</strong>
 +
Use <code>data-bp_objecttypes="individual".</code>
 +
For example, use this code to this search for 'seizure' only among
 +
'individual' objects from the "Adverse Event Reporting Ontology".
 +
<br/>
 +
<code><input type="text" name="r" data-bp_objecttypes="individual" class="bp_form_complete-AERO-uri"/></code>
 +
  </li>
 +
      </ul>
 +
</ul>
 +
 
 
</ul>
 
</ul>
  
Line 95: Line 138:
 
   <li>Download the [http://bioportal.bioontology.org/javascripts/widgets/quick_jump.js <b>quick_jump.js file</b>] and put it on your server
 
   <li>Download the [http://bioportal.bioontology.org/javascripts/widgets/quick_jump.js <b>quick_jump.js file</b>] and put it on your server
 
   </li>
 
   </li>
   <li>Copy the code below and paste it to your HTML page
+
   <li>Copy the code below and paste it to your HTML page.
   </li>
+
<pre>
 +
<div id="bp_quick_jump"></div>
 +
<script type="text/javascript">
 +
    var BP_ontology_id = "FB-DV";
 +
</script>
 +
<script src="quick_jump.js" type="text/javascript" charset="utf-8">
 +
</script>
 +
   </pre>
 +
</li>
 
   <li>
 
   <li>
 
     <b>Note:</b> If you would like to use Quick Jump across multiple ontologies:
 
     <b>Note:</b> If you would like to use Quick Jump across multiple ontologies:
 
     <ul>
 
     <ul>
 
       <li>You can enter a comma-separated list of ontology ids:<br>
 
       <li>You can enter a comma-separated list of ontology ids:<br>
         var BP_ontology_id = "1032,1089";
+
         var BP_ontology_id = "NCIT,BIRNLEX";
 
       </li>
 
       </li>
 
       <li>You cans set the variable to 'all' to search all ontologies in BioPortal:<br>
 
       <li>You cans set the variable to 'all' to search all ontologies in BioPortal:<br>
Line 113: Line 164:
 
<pre>
 
<pre>
 
<script type="text/javascript">
 
<script type="text/javascript">
     var BP_ontology_id = "1032";
+
     var BP_ontology_id = "NCIT";
 
</script>
 
</script>
 
<script src="quick_jump.js" type="text/javascript" charset="utf-8"></script>
 
<script src="quick_jump.js" type="text/javascript" charset="utf-8"></script>
Line 119: Line 170:
 
       </li>
 
       </li>
 
     </ul>
 
     </ul>
 +
  </li>
 +
  <li>
 +
    To limit the term lookup to a particular branch of an ontology, include the following Javascript in your page (replace conceptid with the id for the term which you would like to use as the root of your branch):
 +
    <pre>var BP_search_branch = "{class_id}";</pre>
 +
  </li>
 +
  <li>
 +
    To display definitions with the list of terms that are returned, include the following Javascript in your page:
 +
    <pre>var BP_include_definitions = true;</pre>
 
   </li>
 
   </li>
 
</ul>
 
</ul>
 
== Feed widget ==
 
 
To add a Feed widget to your HTML page, simple copy the code from the Ontology Widget page for your ontology of interest. Here is a sample:
 
 
<pre>
 
<script type="text/javascript">
 
var BP_ontology_id = "1032"
 
</script>
 
<script src="http://bioportal.bioontology.org/javascripts/widgets/feed_widget.js" type="text/javascript" charset="utf-8"></script>
 
</pre>
 
  
 
== Ontology visualization widget ==
 
== Ontology visualization widget ==
Line 137: Line 185:
  
 
<pre>
 
<pre>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
+
<iframe src="http://bioportal.bioontology.org/widgets/visualization?
id="FlexoViz" width="100%" height="100%"
+
  ontology=NCIT
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
+
  &class=http%3A%2F%2Fncicb.nci.nih.gov%2Fxml%2Fowl%2FEVS%2FThesaurus.owl%23C38999
<param name="movie" value="http://keg.cs.uvic.ca/ncbo/flexviz/FlexoViz.swf" />
+
  &apikey=YOUR_API_KEY"
<param name="quality" value="high" />
+
  frameborder="0">
<param name="bgcolor" value="#ffffff" />
+
</iframe>
<param name="allowScriptAccess" value="always" />
 
<embed src="http://keg.cs.uvic.ca/ncbo/flexviz/FlexoViz.swf" bgcolor="#ffffff"
 
width="100%" height="100%" name="FlexoViz" align="middle"
 
play="true"
 
loop="false"
 
quality="high"
 
allowScriptAccess="always"
 
type="application/x-shockwave-flash"
 
flashVars="widget=true&ontology=39478&server=http://rest.bioontology.org/bioportal/"
 
pluginspage="http://www.adobe.com/go/getflashplayer">
 
</embed>
 
</object>
 
</pre>
 
 
 
If you want the visualization to be focused on a particular term in the ontology, you can add the term id to the parameters above. For example, to have the widget focus on Melanoma in NCI Thesaurus, replace the following line in the snippet above:
 
<pre>
 
flashVars="widget=true&ontology=39478&server=http://rest.bioontology.org/bioportal/"
 
 
</pre>
 
</pre>
  
with
+
== NCBO Ontology Tree Widget ==
<pre>
 
flashVars="widget=true&ontology=39478&nodeid=Melanoma&server=http://rest.bioontology.org/bioportal/"
 
</pre>
 
  
(''note "&nodeid=Melanoma"'')
+
===Description===
 
 
== OntologyTree Widget ==
 
 
 
'''Description'''<br>
 
 
The OntologyTree widget is an embeddable Flex application that allows a user to interact with a tree browser for ontologies. The widget can be configured to display a list of all the ontologies in BioPortal, allowing the user to select which one to view, or can be setup to view a particular ontology. Additionally, there are several Javascript helper functions for the widget, allowing it to be utilized as a fully functional component in other applications.
 
The OntologyTree widget is an embeddable Flex application that allows a user to interact with a tree browser for ontologies. The widget can be configured to display a list of all the ontologies in BioPortal, allowing the user to select which one to view, or can be setup to view a particular ontology. Additionally, there are several Javascript helper functions for the widget, allowing it to be utilized as a fully functional component in other applications.
  
'''Location'''<br>
+
===Location===
http://keg.cs.uvic.ca/ncbo/ontologytree/OntologyTree.swf
+
Add the following files to use the widget:
 +
* http://bioportal.bioontology.org/widgets/jquery.ncbo.tree.css
 +
* http://bioportal.bioontology.org/widgets/jquery.ncbo.tree-2.0.2.js
 +
Or the minified versions:
 +
* http://bioportal.bioontology.org/widgets/minified/jquery.ncbo.tree.min.css
 +
* http://bioportal.bioontology.org/widgets/minified/jquery.ncbo.tree-2.0.2.min.js
  
'''Parameters'''
+
===Setup===
* '''ontology''' = The id of the ontology to use, by default it assumes this value is the ontology version id
+
* You will need to use jQuery to utilize the Tree Widget. If you aren't using jQuery already, you can add it as follows: <pre><script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script></pre>
* '''virtual''' [true|false] - If true then the above ontology parameter is assumed to be a virtual ontology id
+
* Create a div element to store the tree: <pre><div id="tree"></div></pre>
* '''canchangeontology''' [true|false] = If false then users can't change the current ontology
+
* Initialize the tree:<pre>var tree = $("#tree").NCBOTree({&#10;  apikey: "YOUR_API_KEY",&#10;  ontology: "NCIT"&#10;});&#10;</pre>
* '''canchangeroot''' [true|false] = If true the the user can specify a root concept (using the context menu)
+
* The div you created should now contain a tree showing the roots of the NCIT ontology
* '''rootconceptid''' = The id of the root concept to show in the tree, leave out to show the ontology roots
+
* Additional setup options:
* '''server''' = The rest server to use. Defaults to "http://rest.bioontology.org/bioportal/".
+
** '''autoclose''': Close other branches of the tree when expanding a new one
* '''redirecturl''' = The url to redirect to for terms and ontologies (in BioPortal). Defaults to "http://bioportal.bioontology.org/".
+
** '''treeClass''': Class to identify the tree with
* '''alerterrors''' [true|false] = If true then errors will be displayed in an annoying popup box.
+
** '''autocompleteClass''': Class to identify the autocomplete (search) input with
* '''title''' = The title for the browser window
+
** '''width''': Set the width of the tree and autocomplete input
 +
** '''startingClass''': Start with this class selected (and expanded to) in the tree
 +
** '''startingRoot''': Start with this class as the only root displayed in the tree. This allows you to display a sub-tree or branch of your choosing.
 +
** '''ncboAPIURL''': Use a different NCBO REST instance (not normally used)
 +
** '''ncboUIURL''': Use a different NCBO UI instance (not normally used)
  
'''Embed Example'''<br>
+
===Callbacks and Event Triggers===
Using Javascript (preferred):
+
You can interact programmatically with the tree using JavaScript and jQuery. Callbacks can be passed when setting up the tree:
 
<pre>
 
<pre>
<script src="http://keg.cs.uvic.ca/ncbo/ontologytree/AC_OETags.js" language="javascript"></script>
+
var tree = $("#tree").NCBOTree({
<!--
+
  apikey: "YOUR_API_KEY",
// -----------------------------------------------------------------------------
+
  ontology: "NCIT",
// Globals
+
  afterSelect: function(event, classId, prefLabel, selectedNode){
// Major version of Flash required
+
     console.log(classId);
var requiredMajorVersion = 9;
+
  }
// Minor version of Flash required
+
});
var requiredMinorVersion = 0;
 
// Minor version of Flash required
 
var requiredRevision = 124;
 
// -----------------------------------------------------------------------------
 
// -->
 
 
 
// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
 
var hasProductInstall = DetectFlashVer(6, 0, 65);
 
 
 
// Version check based upon the values defined in globals
 
var hasRequestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
 
 
 
if (hasProductInstall && !hasRequestedVersion) {
 
    // DO NOT MODIFY THE FOLLOWING FOUR LINES
 
    // Location visited after installation is complete if installation is required
 
    var MMPlayerType = (isIE == true) ? "ActiveX": "PlugIn";
 
    var MMredirectURL = window.location;
 
    document.title = document.title.slice(0, 47) + " - Flash Player Installation";
 
    var MMdoctitle = document.title;
 
 
 
    AC_FL_RunContent(
 
    "src", "playerProductInstall",
 
    "FlashVars", "MMredirectURL=" + MMredirectURL + '&MMplayerType=' + MMPlayerType + '&MMdoctitle=' + MMdoctitle + "",
 
    "width", "300",
 
    "height", "100%",
 
    "align", "middle",
 
    "id", "OntologyTree",
 
    "quality", "high",
 
    "bgcolor", "#ffffff",
 
    "name", "OntologyTree",
 
    "allowScriptAccess", "always",
 
    "type", "application/x-shockwave-flash",
 
    "pluginspage", "http://www.adobe.com/go/getflashplayer"
 
    );
 
} else if (hasRequestedVersion) {
 
    // if we've detected an acceptable version
 
    // embed the Flash Content SWF when all tests are passed
 
    AC_FL_RunContent(
 
    "src", "http://keg.cs.uvic.ca/ncbo/ontologytree/OntologyTree.swf",
 
    "width", "300",
 
    "height", "100%",
 
    "align", "middle",
 
    "id", "OntologyTree",
 
    "quality", "high",
 
    "bgcolor", "#ffffff",
 
    "name", "OntologyTree",
 
    "allowScriptAccess", "always",
 
    "flashVars", "ontology=&virtual=false&alerterrors=false&canchangeontology=true&rootconceptid=",
 
    "type", "application/x-shockwave-flash",
 
    "pluginspage", "http://www.adobe.com/go/getflashplayer"
 
    );
 
} else {
 
     // flash is too old or we can't detect the plugin
 
    var alternateContent = 'Alternate HTML content should be placed here. '
 
    + 'This content requires the Adobe Flash Player. '
 
    + '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
 
    document.write(alternateContent);
 
    // insert non-flash content
 
}
 
 
</pre>
 
</pre>
 +
The following are the available callbacks with their arguments:
 +
* '''beforeExpand''', ''arg'': expandedNode
 +
* '''afterExpand''', ''arg'': expandedNode
 +
* '''afterExpandError''', ''arg'': expandedNode
 +
* '''afterSelect''', ''arg'': classId, prefLabel, selectedNode
 +
* '''afterJumpToClass''', ''arg'': classId
  
Using HTML:
+
You can also listen to these as jQuery events:
 
<pre>
 
<pre>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
+
tree.on("afterSelect", function(event, classId, prefLabel, selectedNode) {
id="OntologyTree" width="300" height="100%"
+
  console.log(classId);
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
+
}
<param name="movie" value="http://keg.cs.uvic.ca/ncbo/ontologytree/OntologyTree.swf" />
 
<param name="quality" value="high" />
 
<param name="bgcolor" value="#ffffff" />
 
<param name="allowScriptAccess" value="always" />
 
<param name="flashVars" value="ontology=&alerterrors=false&canchangeontology=true" />
 
<embed src="http://keg.cs.uvic.ca/ncbo/ontologytree/OntologyTree.swf" quality="high" bgcolor="#ffffff"
 
width="300" height="100%" name="OntologyTree" align="middle"
 
play="true"
 
loop="false"
 
allowScriptAccess="always"
 
type="application/x-shockwave-flash"
 
flashVars="ontology=&alerterrors=false&canchangeontology=true"
 
pluginspage="http://www.adobe.com/go/getflashplayer">
 
</embed>
 
</object>
 
 
</pre>
 
</pre>
  
'''Javascript Examples'''<br>
+
Here are the events with their arguments:
<pre>
+
* '''beforeExpand''', ''arg'': event, expandedNode
/*  
+
* '''afterExpand''', ''arg'': event, expandedNode
* The following JavaScript functions allow you to interact with the Flash BioPortal Ontology Tree. 
+
* '''afterExpandError''', ''arg'': event, expandedNode
* You can load an ontology by id, and get the current ontology id or name.
+
* '''afterSelect''', ''arg'': event, classId, prefLabel, selectedNode
* Once an ontology is loaded then you can get the currently selected concept by id or name,
+
* '''afterJumpToClass''', ''arg'': event, classId
* and you can also select a concept by id or name. 
 
* You can also listen for one of these events by implementing the following functions (see the stubs below):
 
* appComplete, treeSelectionChanged, treeNodeDoubleClicked, or errorLoadingOntology
 
*
 
* These are the parameters that you can pass into the application using the "flashVars" parameter:
 
* (see the examples below):
 
* - ontology: the id of the ontology (version or virtual)
 
* - virtual: if false (default) then the ontology id above is the version id
 
*   if true then the above ontology id is assumed to be the virtual id
 
* - alerterrors: (true/false) determines whether the application will display errors (default is false)
 
* - server: defines the URL of the rest server (null by default)
 
* - title: changes the default title for the page
 
* - canchangeontology: if true then the ontology can be changed
 
* - rootconceptid: sets the optional root node of the tree
 
* - canchangeroot: if false then the root of the tree cannot be changed by the user (using context menu items)
 
*/
 
  
// get a handle for the flash application
+
=== Public Methods ===
function getApp() {
+
There are a variety of methods you can call on the object returned when calling NCBOTree(). They can be used to get information about the state of the tree or to programmatically interact with it.
if (navigator.appName.indexOf ("Microsoft") != -1) {
 
app = window["OntologyTree"];
 
} else {
 
app = document["OntologyTree"];
 
}
 
if (app == null) {
 
app = document.getElementById("OntologyTree");
 
}
 
if (app == null) {
 
alert("Could not get Flash object, JavaScript/Flex communication failed.");
 
}
 
return app;
 
}
 
  
// these are the available functions that you can call ONCE the
+
<pre>
// flash SWF has finished loading
+
var tree = $("#tree").data("NCBOTree");
 
+
// OR
/** Loads a new ontology by id. */
+
var tree = $("#tree")[0].NCBOTree;
function loadOntology(ontologyID) {
+
// OR
var app = getApp();
+
var tree = document.getElementById("tree").NCBOTree;
if (app && app.loadOntology) {
 
app.loadOntology(ontologyID);
 
}
 
}
 
 
 
/** Gets the id of the current ontology, will be null if no ontology is loaded. */
 
function getOntologyID() {
 
var ontologyID = null;
 
var app = getApp();
 
if (app && app.getOntologyID) {
 
ontologyID = app.getOntologyID();
 
}
 
return ontologyID;
 
}
 
 
 
/** Gets the name of the current ontology, will be null if no ontology is loaded. */
 
function getOntologyName() {
 
var ontologyName = null;
 
var app = getApp();
 
if (app && app.getOntologyName) {
 
ontologyName = app.getOntologyName();
 
}
 
return ontologyName;
 
}
 
 
 
/** Gets the id of the currently selected concept, will be null if nothing is selected. */
 
function getSelectedConceptID() {
 
var conceptID = null;
 
var app = getApp();
 
if (app && app.getSelectedConceptID) {
 
conceptID = app.getSelectedConceptID();
 
}
 
return conceptID;
 
}
 
 
 
/**
 
* Gets the full id (not all ontologies support this) of the currently selected concept.
 
* Will be null if nothing is selected, will be the same as the conceptID if no fullID exists.
 
*/
 
function getSelectedConceptFullID() {
 
var conceptID = null;
 
var app = getApp();
 
if (app && app.getSelectedConceptFullID) {
 
conceptID = app.getSelectedConceptFullID();
 
}
 
return conceptID;
 
}
 
 
 
/** Gets the name of the currently selected concept, will be null if nothing is selected. */
 
function getSelectedConceptName() {
 
var conceptName = null;
 
var app = getApp();
 
if (app && app.getSelectedConceptName) {
 
conceptName = app.getSelectedConceptName();
 
}
 
return conceptName;
 
}
 
 
 
/** Loads and selects a concept (by id) in the current ontology. */
 
function loadConceptByID(conceptID) {
 
var app = getApp();
 
if (app && app.loadConceptByID) {
 
app.loadConceptByID(conceptID);
 
}
 
}
 
 
 
/** Attempts to load and select a concept (by name) in the current ontology. */
 
function loadConceptByName(conceptName) {
 
var app = getApp();
 
if (app && app.loadConceptByName) {
 
app.loadConceptByName(conceptName);
 
}
 
}
 
 
 
/** This function gets call by flash when the swf has finished loading. */
 
function appComplete(swfID) {
 
// alert("flash app finished loading: " + swfID);
 
}
 
 
 
/** Implement this function to listen for tree selection changes */
 
function treeSelectionChanged(nodeID, nodeName, swfID) {
 
// alert("tree selection: " + nodeID + " - " + nodeName + " - " + swfID);
 
}
 
 
 
/** Implement this function to listen for tree double click events */
 
function treeNodeDoubleClicked(nodeID, nodeName, swfID) {
 
alert("tree node double clicked: " + nodeID + " - " + nodeName + " - " + swfID);
 
}
 
 
 
/** Implement this function to listen for error messages when loading an ontology */
 
function errorLoadingOntology(errorMsg, swfID) {
 
// alert("Error: " + errorMsg);
 
}
 
 
</pre>
 
</pre>
  
= Referencing your ontology of interest in the widgets =
+
Once you have the tree instance, you can call the following methods:
 
+
* '''tree.selectedClass()''': Returns an object that represents the currently-selected class. The object includes attributes for `id`, `prefLabel`, and `URL`. URL is the REST location of the class, and performing and HTTP GET on that URL will provide a JSON representation of the class.
Most of the time you would want your widget to use the latest version of your ontology of interest that is available in BioPortal. Thus, you would want to use the ontology id and not the version is in your widget. To find out the ontology id, go to the "Ontology Details" page for your ontology of interest in BioPortal (e.g., the page for [http://bioportal.bioontology.org/ontologies/39478 NCI Thesaurus]). You will find the ontology id on the Metadata tab there (e.g., the ontology id for NCI Thesaurus is 1032).
+
* '''tree.selectClass(classId)''': Activates the class in the tree with the matching URI (classId). This will only work if the class is already visible.
 +
* '''tree.jumpToClass(classId)''': Replaces the current tree with a version that is expanded with a path from the root to the given class. This method is triggered when selecting a class from the search field. The provided class will be selected in the tree when the tree returns.
 +
* '''tree.changeOntology(ontologyAcronym)''': Replaces the current tree with the roots from the given ontology.

Latest revision as of 17:17, 1 February 2016

NCBO widgets are the HTML or Javascript code that you can put on your Web site or Web form to use BioPortal functionality there. Using NCBO Widgets is just one of the ways in which you can use the NCBO technology directly on your Web site or in your application.

Types of NCBO Widgets and use cases

  • Term-selection field on a form: You can add a text field to your Web form that will let users enter a term from a controlled vocabulary (e.g., terms from a single ontology)
    • Example use case: Suppose you are running a tissue microarray database and users upload sample descriptions to your database using a web form. There is usually a field for the user to enter the diagnosis for the tissue sample that she is entering. Usually, this field is a text-box or a drop down menu populated with a list of controlled terms. The free text-box is prone to errors, the drop-down gets too unwieldy with large terminologies. Using the NCBO term-selection widget to have users easily select a term from an ontology or controlled vocabulary (such as the NCI Thesaurus) to fill in the field. For example, when the user starts typing "cutaneous me", the term "cutaneous melanoma" pops up.
    • What does the term-selection field get you:
      • Look-ahead so that you don't need to type the whole term
      • Controlled vocabulary provides consistency of the way different users use the term (If you want to put "Malignant melanoma", it will always be the same term from NCIT, regardless of how a user started typing it
      • When a new version of your controlled vocabulary becomes available in BioPortal, the widget will automatically use that new version.
  • Ontology search widget: You can add to your Web site a search box that searches a specific BioPortal ontology. When the user selects the term of interest (with the help of the look-ahead feature), he can jump to the BioPortal page for the corresponding concept in BioPortal.
  • Ontology visualization widget: You can put a widget on your Web site that visualizes your entire ontology of interest, or some part of it, as on the "Visualize" tab in BioPortal.
  • NCBO Ontology Tree Widget: You can put a widget on your Web site that displays the ontology tree, or some part of it, as on the "Visualize" tab in BioPortal.

How to use NCBO Widgets

The easiest way to add any NCBO widget to your HTML page or Web form is by following these steps:

  • Find your ontology of interest in the list of BioPortal ontologies (e.g., NCI Thesaurus)
  • Click on the ontology name to get to the page with Details for that ontology (e.g., the Details for NCI Thesaurus)
  • On the Ontology Details page, go to Ontology Widgets tab
  • Select the widget you want
  • Click the button below the widgets to get instructions for the specific widget

Term-selection field on a form

To add a field to your form that lets the user fetch a term from your ontology of interest, do the following:

  • Download the form_complete.js file and put it on your server
  • In the header for the page where you want the form field, include the form_complete.js file
  • On your form, for the fields where you want to use the term-selection widget, specify the field's class in the following format: bp_form_complete-{ontology_acronym_list}-{value}
    • For example, bp_form_complete-NCIT-uri will use NCI Thesaurus (ontology acronym is NCIT) and will put the term URI in the field after the user selects the term from the pull-down list.
      • Note: In addition to single ontology ids, you can use a list:
        bp_form_complete-NCIT,BIRNLEX-uri
      • OR use 'all' to search across all BioPortal ontologies:
        bp_form_complete-all-uri
    • You can use the following parameters to select which value will be placed into the user-visible input field:

    Hidden form elements auto-generated

    In addition to the input element you defined, there are four hidden form elements that are created and then set when a user selects a term from the list. For example, if you create a field with this code:

    <input type="text" name="a" class="bp_form_complete-all-uri" size="100"/>
    

    The 'name' attribute is used to create the four following fields (note how the 'a' from the name attribute is appended to the id attribute):

    <input type="hidden" id="a_bioportal_preferred_name">
    <input type="hidden" id="a_bioportal_concept_id">
    <input type="hidden" id="a_bioportal_ontology_id">
    <input type="hidden" id="a_bioportal_full_id">
    

    Optional attributes

    • Include term definitions. Use data-bp_include_definitions="true". This will display definitions with the list of terms that are returned. For example, use this code to display search results for 'heart' terms, with definitions, in the NCI Thesaurus.
      <input type="text" name="m" data-bp_include_definitions="true" class="bp_form_complete-NCIT-name"/>
    • Limit lookup to terms below a root term. Use data-bp_search_branch="{class_id}" (replace {class_id} with the class id for the term to use as the branch root). For example, use this code to limit the search for 'heart' to terms within the 'Anatomic_Structure_System_or_Substance' branch of the NCI Thesaurus.
      <input type="text" name="n" data-bp_search_branch="Anatomic_Structure_System_or_Substance" class="bp_form_complete-NCIT-name"/>
    • Object types
      • Search 'class' and 'property' objects. Use data-bp_objecttypes="class,property". For example, use this code to search for 'function' among both 'class' and 'property' objects from the "Adverse Event Reporting Ontology".
        <input type="text" name="o" data-bp_objecttypes="class,property" class="bp_form_complete-AERO-uri"/>
      • Search only 'property' objects. Use data-bp_objecttypes="property". For example, use this code to search for 'function' among only 'property' objects from the "Adverse Event Reporting Ontology".
        <input type="text" name="p" data-bp_objecttypes="property" class="bp_form_complete-AERO-uri"/>
      • Search 'class' and 'individual' objects. Use data-bp_objecttypes="class,individual". For example, use this code to search for 'seizure' among 'class' and 'individual' objects from the "Adverse Event Reporting Ontology".
        <input type="text" name="q" data-bp_objecttypes="class,individual" class="bp_form_complete-AERO-uri"/>
      • Only search 'individual' objects. Use data-bp_objecttypes="individual". For example, use this code to this search for 'seizure' only among 'individual' objects from the "Adverse Event Reporting Ontology".
        <input type="text" name="r" data-bp_objecttypes="individual" class="bp_form_complete-AERO-uri"/>

Ontology search widget

To add a search widget to your HTML page that searches a specific ontology, do the following:

  • Download the quick_jump.js file and put it on your server
  • Copy the code below and paste it to your HTML page.
    <div id="bp_quick_jump"></div>
    <script type="text/javascript">
        var BP_ontology_id = "FB-DV";
    </script>
    <script src="quick_jump.js" type="text/javascript" charset="utf-8">
    </script>
      
  • Note: If you would like to use Quick Jump across multiple ontologies:
    • You can enter a comma-separated list of ontology ids:
      var BP_ontology_id = "NCIT,BIRNLEX";
    • You cans set the variable to 'all' to search all ontologies in BioPortal:
      var BP_ontology_id = "all";
  • In the code that you just pasted, make sure to change the path to the quick_jump.js file to point to the location where you put the file (relative to your HTML file)
    • For example, if you put the quick_jump.js file in the same directory as your HTML file, this is the code you would use:
      <script type="text/javascript">
          var BP_ontology_id = "NCIT";
      </script>
      <script src="quick_jump.js" type="text/javascript" charset="utf-8"></script>
      
  • To limit the term lookup to a particular branch of an ontology, include the following Javascript in your page (replace conceptid with the id for the term which you would like to use as the root of your branch):
    var BP_search_branch = "{class_id}";
  • To display definitions with the list of terms that are returned, include the following Javascript in your page:
    var BP_include_definitions = true;

Ontology visualization widget

To add a widget visualizing your ontology to your HTML page, simple copy the code from the Ontology Widget page for your ontology of interest. Here is a sample:

<iframe src="http://bioportal.bioontology.org/widgets/visualization?
  ontology=NCIT
  &class=http%3A%2F%2Fncicb.nci.nih.gov%2Fxml%2Fowl%2FEVS%2FThesaurus.owl%23C38999
  &apikey=YOUR_API_KEY"
  frameborder="0">
</iframe>

NCBO Ontology Tree Widget

Description

The OntologyTree widget is an embeddable Flex application that allows a user to interact with a tree browser for ontologies. The widget can be configured to display a list of all the ontologies in BioPortal, allowing the user to select which one to view, or can be setup to view a particular ontology. Additionally, there are several Javascript helper functions for the widget, allowing it to be utilized as a fully functional component in other applications.

Location

Add the following files to use the widget:

Or the minified versions:

Setup

  • You will need to use jQuery to utilize the Tree Widget. If you aren't using jQuery already, you can add it as follows:
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  • Create a div element to store the tree:
    <div id="tree"></div>
  • Initialize the tree:
    var tree = $("#tree").NCBOTree({
      apikey: "YOUR_API_KEY",
      ontology: "NCIT"
    });
    
  • The div you created should now contain a tree showing the roots of the NCIT ontology
  • Additional setup options:
    • autoclose: Close other branches of the tree when expanding a new one
    • treeClass: Class to identify the tree with
    • autocompleteClass: Class to identify the autocomplete (search) input with
    • width: Set the width of the tree and autocomplete input
    • startingClass: Start with this class selected (and expanded to) in the tree
    • startingRoot: Start with this class as the only root displayed in the tree. This allows you to display a sub-tree or branch of your choosing.
    • ncboAPIURL: Use a different NCBO REST instance (not normally used)
    • ncboUIURL: Use a different NCBO UI instance (not normally used)

Callbacks and Event Triggers

You can interact programmatically with the tree using JavaScript and jQuery. Callbacks can be passed when setting up the tree:

var tree = $("#tree").NCBOTree({
  apikey: "YOUR_API_KEY",
  ontology: "NCIT",
  afterSelect: function(event, classId, prefLabel, selectedNode){
    console.log(classId);
  }
});

The following are the available callbacks with their arguments:

  • beforeExpand, arg: expandedNode
  • afterExpand, arg: expandedNode
  • afterExpandError, arg: expandedNode
  • afterSelect, arg: classId, prefLabel, selectedNode
  • afterJumpToClass, arg: classId

You can also listen to these as jQuery events:

tree.on("afterSelect", function(event, classId, prefLabel, selectedNode) {
  console.log(classId);
}

Here are the events with their arguments:

  • beforeExpand, arg: event, expandedNode
  • afterExpand, arg: event, expandedNode
  • afterExpandError, arg: event, expandedNode
  • afterSelect, arg: event, classId, prefLabel, selectedNode
  • afterJumpToClass, arg: event, classId

Public Methods

There are a variety of methods you can call on the object returned when calling NCBOTree(). They can be used to get information about the state of the tree or to programmatically interact with it.

var tree = $("#tree").data("NCBOTree");
// OR
var tree = $("#tree")[0].NCBOTree;
// OR
var tree = document.getElementById("tree").NCBOTree;

Once you have the tree instance, you can call the following methods:

  • tree.selectedClass(): Returns an object that represents the currently-selected class. The object includes attributes for `id`, `prefLabel`, and `URL`. URL is the REST location of the class, and performing and HTTP GET on that URL will provide a JSON representation of the class.
  • tree.selectClass(classId): Activates the class in the tree with the matching URI (classId). This will only work if the class is already visible.
  • tree.jumpToClass(classId): Replaces the current tree with a version that is expanded with a path from the root to the given class. This method is triggered when selecting a class from the search field. The provided class will be selected in the tree when the tree returns.
  • tree.changeOntology(ontologyAcronym): Replaces the current tree with the roots from the given ontology.