<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.bioontology.org//mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nipunb</id>
	<title>NCBO Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.bioontology.org//mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nipunb"/>
	<link rel="alternate" type="text/html" href="https://www.bioontology.org//wiki/Special:Contributions/Nipunb"/>
	<updated>2026-06-05T12:00:55Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=PURL_Server&amp;diff=8789</id>
		<title>PURL Server</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=PURL_Server&amp;diff=8789"/>
		<updated>2009-05-11T10:44:15Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: New page: ==Set Up== *2 Windows boxes. *Machine 1 - Master  *IP: master.ip *Has MySQL 5.1  *Installing PURL using MySQL as the backend on Machine 1. **1. Download PULR 1.4 **2. Install specifying My...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Set Up==&lt;br /&gt;
*2 Windows boxes.&lt;br /&gt;
*Machine 1 - Master &lt;br /&gt;
*IP: master.ip&lt;br /&gt;
*Has MySQL 5.1&lt;br /&gt;
&lt;br /&gt;
*Installing PURL using MySQL as the backend on Machine 1.&lt;br /&gt;
**1. Download PULR 1.4&lt;br /&gt;
**2. Install specifying MySQL as your backend.Imp Note: You would have a create a database schema'purls' on your MySQL using command  line. The PURL installation would not do that for you. In other words, the PURL installation expects you to have a schema called 'purls'. This is will be used as the backend for storing the URLs.&lt;br /&gt;
**3. Go to the folder where you installed PURL, by default it is: C:\Program Files\PURLZ-Server-1.4&lt;br /&gt;
**4. Navigate to the bin folder, click on startup.bat to start the server. Imp Note: Default username password for the PURL server is: admin/password&lt;br /&gt;
**5. Create a backup of purls on Machine 1. On the command line, execute the following command:&lt;br /&gt;
  mysqldump --user=root --password  --opt purls &amp;gt; c:\purls_backup.sql&lt;br /&gt;
&lt;br /&gt;
*Machine 2 - Slave &lt;br /&gt;
*IP: slave.ip&lt;br /&gt;
*Has MySQL 5.1&lt;br /&gt;
&lt;br /&gt;
==Instructions for creating the replication==&lt;br /&gt;
&lt;br /&gt;
*1. On Machine 1:&lt;br /&gt;
**Log on to MySQL&lt;br /&gt;
  mysql -u root -p&lt;br /&gt;
   &lt;br /&gt;
*2. On Machine 1:&lt;br /&gt;
**Run the command&lt;br /&gt;
  grant replication slave, replication client on *.* to 'replicator'@'slave.ip' identified by 'password';&lt;br /&gt;
   &lt;br /&gt;
*3. On Machine 1:&lt;br /&gt;
**Configure the master:Add the following lines to my.ini file in C:\Program Files\MySQL\MySQL 5.1 folder. Add the lines in the section [mysqld] after the line that specifies the port&lt;br /&gt;
   &lt;br /&gt;
   server-id=1&lt;br /&gt;
   log-bin=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/bin.log&amp;quot;&lt;br /&gt;
   log-error=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/error.log&amp;quot;&lt;br /&gt;
   log-bin-index=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/log-bin.index&amp;quot;&lt;br /&gt;
   binlog-do-db=purls&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
*4.Restart the MySQL service on the master&lt;br /&gt;
&lt;br /&gt;
*5. On Machine 2: &lt;br /&gt;
**Create a new empty database 'purls'&lt;br /&gt;
   &lt;br /&gt;
*6. On Machine 2:&lt;br /&gt;
**Restore the purls database&lt;br /&gt;
**On the command promt run the command&lt;br /&gt;
  mysql -u root -p purls &amp;lt; C:\path_to_purls_backup\purls_backup.sql&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
*7. On Machine 2: Configure the slave: Add the following lines to my.ini file in C:\Program Files\MySQL\MySQL 5.1 folder. Add the lines in the section [mysqld] after the line that specifies the port&lt;br /&gt;
   &lt;br /&gt;
   server-id=2&lt;br /&gt;
   master-host=171.65.32.120&lt;br /&gt;
   master-port=3306&lt;br /&gt;
   master-user=replicator&lt;br /&gt;
   master-password=password&lt;br /&gt;
   replicate-do-db=purls&lt;br /&gt;
   &lt;br /&gt;
   log-bin=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/bin.log&amp;quot;&lt;br /&gt;
   log-bin-index=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/log-bin.index&amp;quot;&lt;br /&gt;
   log-error=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/error.log&amp;quot;&lt;br /&gt;
   relay-log=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/relay.log&amp;quot;&lt;br /&gt;
   relay-log-info-file=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/relay-log.info&amp;quot;&lt;br /&gt;
   relay-log-index=&amp;quot;C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/relay-log.index&amp;quot;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*8.Restart the MySQL service on the slave&lt;br /&gt;
&lt;br /&gt;
*9. On the slave, log into MySQl&lt;br /&gt;
**i) start slave;&lt;br /&gt;
**ii)show slave status\G;&lt;br /&gt;
Make sure slave I/O running is yes&lt;br /&gt;
Make sure slave_SQL_running is yes&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8788</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8788"/>
		<updated>2009-05-11T10:36:27Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: /* Software Development Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''NCBO Public WIKI'''. This WIKI provides information about collaborative ontology development efforts, dissemination events conducted by the NCBO and publically shared materials from the NCBO. &lt;br /&gt;
Please visit our [http://www.bioontology.org Main Site] for more information and materials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== NCBO Links ===&lt;br /&gt;
*[http://www.bioontology.org/ NCBO Home page]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/NCBO_FAQ NCBO FAQ]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/News_Events_Publications NCBO News, Events and Publications]&lt;br /&gt;
&lt;br /&gt;
=== Shared Materials===&lt;br /&gt;
&lt;br /&gt;
*[[Public Requirements Redirect|Public Requirements]]&lt;br /&gt;
&lt;br /&gt;
*[[Shared Materials]]&lt;br /&gt;
&lt;br /&gt;
*[[Evaluation Activities]]&lt;br /&gt;
&lt;br /&gt;
=== NCBC Links ===&lt;br /&gt;
&lt;br /&gt;
*[http://www.bisti.nih.gov/ncbc/ Home page of National Centers for Biomedical Computing]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:Software_and_Data_Integration_Working_Group NCBC Software and Data Integration Working Group (SDIWG) and Centers Discussion]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:_NCBC_Scientific_Ontologies NCBC Scientific Ontologies Working Group]&lt;br /&gt;
&lt;br /&gt;
=== Ontology Development Area ===&lt;br /&gt;
&lt;br /&gt;
Below are wikis for some of the current OBO ontologies. Each wiki is housed on the bioontologies.org wiki, in its own partition (wikispace) of the main wiki&lt;br /&gt;
&lt;br /&gt;
*[[PATO:Main_Page]] - An ontology of phenotypic qualities&lt;br /&gt;
&lt;br /&gt;
*[[RO:Main_Page]] - OBO Relations ontology&lt;br /&gt;
&lt;br /&gt;
*[[CARO:Main_Page]] - Reference anatomical ontology&lt;br /&gt;
&lt;br /&gt;
*[[CL:Main_Page]] - OBO Cell ontology&lt;br /&gt;
&lt;br /&gt;
*[[SO:Main_Page]] - Sequence Ontology&lt;br /&gt;
&lt;br /&gt;
*[[Disease:Main_Page]] - Disease Ontology, and other ontologies pertaining to diseases and disorders&lt;br /&gt;
&lt;br /&gt;
*[[OCI:Main_Page]] - Ontology of Clinical Investigation&lt;br /&gt;
&lt;br /&gt;
*[[NPO:Main_Page]] - NanoParticle Ontology&lt;br /&gt;
&lt;br /&gt;
Note that each ontology lives in its own wikispace which corresponds to the [[OBO:IDSpace]] of that ontology. Note for wiki editors: all wiki pages that are to be considered local to a particular ontology should be prefixed with that IDSpace.&lt;br /&gt;
&lt;br /&gt;
=== NCBO Biomedical Resources index ===&lt;br /&gt;
&lt;br /&gt;
NCBO has indexed some biomedical resources with ontology concepts from BioPortal and UMLS. The index is based on semantic annotation of biomedical data. It enable users to locate biomedical data resources related to particular ontology concepts. Learn more about the the resource index here: [[NCBO Biomedical Resources Index]].&lt;br /&gt;
&lt;br /&gt;
=== Software Development Area ===&lt;br /&gt;
&lt;br /&gt;
*[[OboInOwl:Main_Page]] - Mapping between OBO and OWL formats&lt;br /&gt;
*[[Phenote:Main_Page]] - A Phenotype Annotation Tool using Ontologies&lt;br /&gt;
*[http://bioportal.bioontology.org Bioportal:Main_Page] - Main page for accessing Bioportal&lt;br /&gt;
*[[NCBO-OOR Development]] - Documentation on how the Open Ontology Repository community can customize and advance BioPortal capabilities.&lt;br /&gt;
*[[Processing_OBR_Resources]] - Notes on resources being processed&lt;br /&gt;
*[[RDF Triple Stores]] - Notes, learning and how-tos regarding uploading data to various triple stores&lt;br /&gt;
*[[Path to Root]] - Project for consuming the path to root and other OBS rest services&lt;br /&gt;
*[[Tag Cloud Generation]] - Project to consume the OBS REST services and generated cumulative count using the path to root&lt;br /&gt;
*[[PURL Server]] - Instructions on how to set-up a PURL server and create Master-Slave architecture for redudancy&lt;br /&gt;
&lt;br /&gt;
=== NCBO Web services ===&lt;br /&gt;
&lt;br /&gt;
* [[BioPortal REST services]] - Documentation on how to use BioPortal functionality as Web services&lt;br /&gt;
* [[Annotator Web service]] - Documentation &amp;amp; information about the NCBO Annotator&lt;br /&gt;
* [[Resources Index Web services]] - Documentation &amp;amp; information about the annotation-based NCBO resources index&lt;br /&gt;
* [[UMLS_REST_Services]] - Documentation on how to use our ''prototype'' UMLS services (NetKernel)&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8787</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8787"/>
		<updated>2009-05-11T10:31:05Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: /* Software Development Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''NCBO Public WIKI'''. This WIKI provides information about collaborative ontology development efforts, dissemination events conducted by the NCBO and publically shared materials from the NCBO. &lt;br /&gt;
Please visit our [http://www.bioontology.org Main Site] for more information and materials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== NCBO Links ===&lt;br /&gt;
*[http://www.bioontology.org/ NCBO Home page]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/NCBO_FAQ NCBO FAQ]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/News_Events_Publications NCBO News, Events and Publications]&lt;br /&gt;
&lt;br /&gt;
=== Shared Materials===&lt;br /&gt;
&lt;br /&gt;
*[[Public Requirements Redirect|Public Requirements]]&lt;br /&gt;
&lt;br /&gt;
*[[Shared Materials]]&lt;br /&gt;
&lt;br /&gt;
*[[Evaluation Activities]]&lt;br /&gt;
&lt;br /&gt;
=== NCBC Links ===&lt;br /&gt;
&lt;br /&gt;
*[http://www.bisti.nih.gov/ncbc/ Home page of National Centers for Biomedical Computing]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:Software_and_Data_Integration_Working_Group NCBC Software and Data Integration Working Group (SDIWG) and Centers Discussion]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:_NCBC_Scientific_Ontologies NCBC Scientific Ontologies Working Group]&lt;br /&gt;
&lt;br /&gt;
=== Ontology Development Area ===&lt;br /&gt;
&lt;br /&gt;
Below are wikis for some of the current OBO ontologies. Each wiki is housed on the bioontologies.org wiki, in its own partition (wikispace) of the main wiki&lt;br /&gt;
&lt;br /&gt;
*[[PATO:Main_Page]] - An ontology of phenotypic qualities&lt;br /&gt;
&lt;br /&gt;
*[[RO:Main_Page]] - OBO Relations ontology&lt;br /&gt;
&lt;br /&gt;
*[[CARO:Main_Page]] - Reference anatomical ontology&lt;br /&gt;
&lt;br /&gt;
*[[CL:Main_Page]] - OBO Cell ontology&lt;br /&gt;
&lt;br /&gt;
*[[SO:Main_Page]] - Sequence Ontology&lt;br /&gt;
&lt;br /&gt;
*[[Disease:Main_Page]] - Disease Ontology, and other ontologies pertaining to diseases and disorders&lt;br /&gt;
&lt;br /&gt;
*[[OCI:Main_Page]] - Ontology of Clinical Investigation&lt;br /&gt;
&lt;br /&gt;
*[[NPO:Main_Page]] - NanoParticle Ontology&lt;br /&gt;
&lt;br /&gt;
Note that each ontology lives in its own wikispace which corresponds to the [[OBO:IDSpace]] of that ontology. Note for wiki editors: all wiki pages that are to be considered local to a particular ontology should be prefixed with that IDSpace.&lt;br /&gt;
&lt;br /&gt;
=== NCBO Biomedical Resources index ===&lt;br /&gt;
&lt;br /&gt;
NCBO has indexed some biomedical resources with ontology concepts from BioPortal and UMLS. The index is based on semantic annotation of biomedical data. It enable users to locate biomedical data resources related to particular ontology concepts. Learn more about the the resource index here: [[NCBO Biomedical Resources Index]].&lt;br /&gt;
&lt;br /&gt;
=== Software Development Area ===&lt;br /&gt;
&lt;br /&gt;
*[[OboInOwl:Main_Page]] - Mapping between OBO and OWL formats&lt;br /&gt;
*[[Phenote:Main_Page]] - A Phenotype Annotation Tool using Ontologies&lt;br /&gt;
*[http://bioportal.bioontology.org Bioportal:Main_Page] - Main page for accessing Bioportal&lt;br /&gt;
*[[NCBO-OOR Development]] - Documentation on how the Open Ontology Repository community can customize and advance BioPortal capabilities.&lt;br /&gt;
*[[Processing_OBR_Resources]] - Notes on resources being processed&lt;br /&gt;
*[[RDF Triple Stores]] - Notes, learning and how-tos regarding uploading data to various triple stores&lt;br /&gt;
*[[Path to Root]] - Project for consuming the path to root and other OBS rest services&lt;br /&gt;
*[[Tag Cloud Generation]] - Project to consume the OBS REST services and generated cumulative count using the path to root&lt;br /&gt;
&lt;br /&gt;
=== NCBO Web services ===&lt;br /&gt;
&lt;br /&gt;
* [[BioPortal REST services]] - Documentation on how to use BioPortal functionality as Web services&lt;br /&gt;
* [[Annotator Web service]] - Documentation &amp;amp; information about the NCBO Annotator&lt;br /&gt;
* [[Resources Index Web services]] - Documentation &amp;amp; information about the annotation-based NCBO resources index&lt;br /&gt;
* [[UMLS_REST_Services]] - Documentation on how to use our ''prototype'' UMLS services (NetKernel)&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8784</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8784"/>
		<updated>2009-05-11T10:08:04Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: /* Software Development Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''NCBO Public WIKI'''. This WIKI provides information about collaborative ontology development efforts, dissemination events conducted by the NCBO and publically shared materials from the NCBO. &lt;br /&gt;
Please visit our [http://www.bioontology.org Main Site] for more information and materials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== NCBO Links ===&lt;br /&gt;
*[http://www.bioontology.org/ NCBO Home page]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/NCBO_FAQ NCBO FAQ]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/News_Events_Publications NCBO News, Events and Publications]&lt;br /&gt;
&lt;br /&gt;
=== Shared Materials===&lt;br /&gt;
&lt;br /&gt;
*[[Public Requirements Redirect|Public Requirements]]&lt;br /&gt;
&lt;br /&gt;
*[[Shared Materials]]&lt;br /&gt;
&lt;br /&gt;
*[[Evaluation Activities]]&lt;br /&gt;
&lt;br /&gt;
=== NCBC Links ===&lt;br /&gt;
&lt;br /&gt;
*[http://www.bisti.nih.gov/ncbc/ Home page of National Centers for Biomedical Computing]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:Software_and_Data_Integration_Working_Group NCBC Software and Data Integration Working Group (SDIWG) and Centers Discussion]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:_NCBC_Scientific_Ontologies NCBC Scientific Ontologies Working Group]&lt;br /&gt;
&lt;br /&gt;
=== Ontology Development Area ===&lt;br /&gt;
&lt;br /&gt;
Below are wikis for some of the current OBO ontologies. Each wiki is housed on the bioontologies.org wiki, in its own partition (wikispace) of the main wiki&lt;br /&gt;
&lt;br /&gt;
*[[PATO:Main_Page]] - An ontology of phenotypic qualities&lt;br /&gt;
&lt;br /&gt;
*[[RO:Main_Page]] - OBO Relations ontology&lt;br /&gt;
&lt;br /&gt;
*[[CARO:Main_Page]] - Reference anatomical ontology&lt;br /&gt;
&lt;br /&gt;
*[[CL:Main_Page]] - OBO Cell ontology&lt;br /&gt;
&lt;br /&gt;
*[[SO:Main_Page]] - Sequence Ontology&lt;br /&gt;
&lt;br /&gt;
*[[Disease:Main_Page]] - Disease Ontology, and other ontologies pertaining to diseases and disorders&lt;br /&gt;
&lt;br /&gt;
*[[OCI:Main_Page]] - Ontology of Clinical Investigation&lt;br /&gt;
&lt;br /&gt;
*[[NPO:Main_Page]] - NanoParticle Ontology&lt;br /&gt;
&lt;br /&gt;
Note that each ontology lives in its own wikispace which corresponds to the [[OBO:IDSpace]] of that ontology. Note for wiki editors: all wiki pages that are to be considered local to a particular ontology should be prefixed with that IDSpace.&lt;br /&gt;
&lt;br /&gt;
=== NCBO Biomedical Resources index ===&lt;br /&gt;
&lt;br /&gt;
NCBO has indexed some biomedical resources with ontology concepts from BioPortal and UMLS. The index is based on semantic annotation of biomedical data. It enable users to locate biomedical data resources related to particular ontology concepts. Learn more about the the resource index here: [[NCBO Biomedical Resources Index]].&lt;br /&gt;
&lt;br /&gt;
=== Software Development Area ===&lt;br /&gt;
&lt;br /&gt;
*[[OboInOwl:Main_Page]] - Mapping between OBO and OWL formats&lt;br /&gt;
*[[Phenote:Main_Page]] - A Phenotype Annotation Tool using Ontologies&lt;br /&gt;
*[http://bioportal.bioontology.org Bioportal:Main_Page] - Main page for accessing Bioportal&lt;br /&gt;
*[[NCBO-OOR Development]] - Documentation on how the Open Ontology Repository community can customize and advance BioPortal capabilities.&lt;br /&gt;
*[[Processing_OBR_Resources]] - Notes on resources being processed&lt;br /&gt;
*[[RDF Triple Stores]] - Notes, learning and how-tos regarding uploading data to various triple stores&lt;br /&gt;
*[[Path to Root]] - Project for consuming the path to root and other OBS rest services&lt;br /&gt;
&lt;br /&gt;
=== NCBO Web services ===&lt;br /&gt;
&lt;br /&gt;
* [[BioPortal REST services]] - Documentation on how to use BioPortal functionality as Web services&lt;br /&gt;
* [[Annotator Web service]] - Documentation &amp;amp; information about the NCBO Annotator&lt;br /&gt;
* [[Resources Index Web services]] - Documentation &amp;amp; information about the annotation-based NCBO resources index&lt;br /&gt;
* [[UMLS_REST_Services]] - Documentation on how to use our ''prototype'' UMLS services (NetKernel)&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=File:Triple_Stores.pdf&amp;diff=8720</id>
		<title>File:Triple Stores.pdf</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=File:Triple_Stores.pdf&amp;diff=8720"/>
		<updated>2009-05-01T21:53:27Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=File:RDFTripleStore.ppt&amp;diff=8716</id>
		<title>File:RDFTripleStore.ppt</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=File:RDFTripleStore.ppt&amp;diff=8716"/>
		<updated>2009-05-01T21:13:26Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
	<entry>
		<id>https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8715</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.bioontology.org//mediawiki/index.php?title=Main_Page&amp;diff=8715"/>
		<updated>2009-05-01T19:45:41Z</updated>

		<summary type="html">&lt;p&gt;Nipunb: /* Software Development Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''NCBO Public WIKI'''. This WIKI provides information about collaborative ontology development efforts, dissemination events conducted by the NCBO and publically shared materials from the NCBO. &lt;br /&gt;
Please visit our [http://www.bioontology.org Main Site] for more information and materials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== NCBO Links ===&lt;br /&gt;
*[http://www.bioontology.org/ NCBO Home page]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/NCBO_FAQ NCBO FAQ]&lt;br /&gt;
*[http://www.bioontology.org/wiki/index.php/News_Events_Publications NCBO News, Events and Publications]&lt;br /&gt;
&lt;br /&gt;
=== Shared Materials===&lt;br /&gt;
&lt;br /&gt;
*[[Public Requirements Redirect|Public Requirements]]&lt;br /&gt;
&lt;br /&gt;
*[[Shared Materials]]&lt;br /&gt;
&lt;br /&gt;
*[[Evaluation Activities]]&lt;br /&gt;
&lt;br /&gt;
=== NCBC Links ===&lt;br /&gt;
&lt;br /&gt;
*[http://www.bisti.nih.gov/ncbc/ Home page of National Centers for Biomedical Computing]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:Software_and_Data_Integration_Working_Group NCBC Software and Data Integration Working Group (SDIWG) and Centers Discussion]&lt;br /&gt;
&lt;br /&gt;
*[http://wiki.na-mic.org/Wiki/index.php/SDIWG:_NCBC_Scientific_Ontologies NCBC Scientific Ontologies Working Group]&lt;br /&gt;
&lt;br /&gt;
=== Ontology Development Area ===&lt;br /&gt;
&lt;br /&gt;
Below are wikis for some of the current OBO ontologies. Each wiki is housed on the bioontologies.org wiki, in its own partition (wikispace) of the main wiki&lt;br /&gt;
&lt;br /&gt;
*[[PATO:Main_Page]] - An ontology of phenotypic qualities&lt;br /&gt;
&lt;br /&gt;
*[[RO:Main_Page]] - OBO Relations ontology&lt;br /&gt;
&lt;br /&gt;
*[[CARO:Main_Page]] - Reference anatomical ontology&lt;br /&gt;
&lt;br /&gt;
*[[CL:Main_Page]] - OBO Cell ontology&lt;br /&gt;
&lt;br /&gt;
*[[SO:Main_Page]] - Sequence Ontology&lt;br /&gt;
&lt;br /&gt;
*[[Disease:Main_Page]] - Disease Ontology, and other ontologies pertaining to diseases and disorders&lt;br /&gt;
&lt;br /&gt;
*[[OCI:Main_Page]] - Ontology of Clinical Investigation&lt;br /&gt;
&lt;br /&gt;
*[[NPO:Main_Page]] - NanoParticle Ontology&lt;br /&gt;
&lt;br /&gt;
Note that each ontology lives in its own wikispace which corresponds to the [[OBO:IDSpace]] of that ontology. Note for wiki editors: all wiki pages that are to be considered local to a particular ontology should be prefixed with that IDSpace.&lt;br /&gt;
&lt;br /&gt;
=== Software Development Area ===&lt;br /&gt;
&lt;br /&gt;
*[[OboInOwl:Main_Page]] - Mapping between OBO and OWL formats&lt;br /&gt;
*[[Phenote:Main_Page]] - A Phenotype Annotation Tool using Ontologies&lt;br /&gt;
*[http://bioportal.bioontology.org Bioportal:Main_Page] - Main page for accessing Bioportal&lt;br /&gt;
*[[NCBO-OOR Development]] - Documentation on how the Open Ontology Repository community can customize and advance BioPortal capabilities.&lt;br /&gt;
*[[Processing_OBR_Resources]] - Notes on resources being processed&lt;br /&gt;
*[[RDF Triple Stores]] - Notes, learning and how-tos regarding uploading data to various triple stores&lt;br /&gt;
&lt;br /&gt;
=== NCBO Web services ===&lt;br /&gt;
&lt;br /&gt;
* [[BioPortal REST services]] - Documentation on how to use BioPortal functionality as Web services&lt;br /&gt;
* [[UMLS_REST_Services]] - Documentation on how to use our prototype UMLS services (NetKernel)&lt;br /&gt;
* [[Annotator Web service]] - Documentation &amp;amp; information about the NCBO Annotator&lt;br /&gt;
* [[Resources index Web services]] - Documentation &amp;amp; information about the annotation-based NCBO resources index&lt;/div&gt;</summary>
		<author><name>Nipunb</name></author>
	</entry>
</feed>