<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://xbiod.osu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jcora</id>
	<title>xBio:D Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://xbiod.osu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jcora"/>
	<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php/Special:Contributions/Jcora"/>
	<updated>2026-04-08T19:36:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2184</id>
		<title>Tyrannoscelio Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2184"/>
		<updated>2015-08-07T20:09:47Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Mount Remote Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Tyrannoscelio Server Management (tyrannoscelio.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Data Directory: ''/data/''&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
=== Offsite Backup Job ===&lt;br /&gt;
Tyrannoscelio mediates transferring backup files from MegaRaid, the inside the rack NAS, to the ASC offsite shared share. Both of these devices are mounted as directories on the server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See cron jobs: &amp;lt;code&amp;gt;sudo crontab -l&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Mount Remote Devices ===&lt;br /&gt;
The system-wide mounted devices are located in the fstab file and can be modified through the ''nano'' program: &amp;lt;code&amp;gt;sudo nano /etc/fstab&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MegaRaid share is mounted with the line &amp;lt;code&amp;gt;//128.146.250.101/OSUC_Share /share/MegaRaid_Share cifs credentials=/home/jcora/.megaraid.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will not need updated unless the ''jcora'' password changes.&lt;br /&gt;
&lt;br /&gt;
The ASC share is mounted with the line &amp;lt;code&amp;gt;//research.asc.ohio-state.edu/units/EEOB/njohnson-backup /share/ASC_Share cifs credentials=/home/nfj/.asc_nas.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;. The OSU credentials file, ''/home/nfj/.asc_nas.cred'', will need updated every time the password for the Ohio State federated login of ''johnson.2'' changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Data_Management&amp;diff=2183</id>
		<title>XBio:D Data Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Data_Management&amp;diff=2183"/>
		<updated>2015-08-07T19:59:59Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Data Management'''&lt;br /&gt;
&lt;br /&gt;
This section provides instructions on performing common data management tasks on the xBio:D database that are not privy to general users. These tasks are not available through web applications and must either be performed by running a script or a database procedure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Change Occurrence (Specimen) Record CUID ==&lt;br /&gt;
In the Oracle SQL Developer, turn DBMS_OUTPUT on, then run the procedure &amp;lt;code&amp;gt;EXEC updateSpmID(old_cuid, new_cuid);&amp;lt;/code&amp;gt;. The procedure will only produce output when a problem occurred.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Occurrence (Specimen) Record ==&lt;br /&gt;
In the Oracle SQL Developer, turn DBMS_OUTPUT on, then run the procedure &amp;lt;code&amp;gt;EXEC removeSpm(cuid);&amp;lt;/code&amp;gt;. The procedure will only produce output when a problem occurred.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merged/Remove Locality Name ==&lt;br /&gt;
In the Oracle SQL Developer, turn DBMS_OUTPUT on, then run the procedure &amp;lt;code&amp;gt;EXEC change_locality(obsolete_loc_name, valid_loc_name);&amp;lt;/code&amp;gt;. The procedure removes the obsolete locality and places all of the occurrence records from the obsolete locality into the valid locality name. There is also an additional, optional parameter ''coll_date'', which accepts the format DD-MON-YYYY, that will change the functioning of this procedure to change only those occurrence records that were collected on that particular date. If all of the occurrences were collected on that day, the locality is removed. The procedure will only produce output when a problem occurred.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Add Collection Records or Taxon Checklist as a Project to the xBio:D IPT ==&lt;br /&gt;
# Log into the database server (''osuc.biosci.ohio-state.edu'') via SSH and open DwC-A collection export script, ''export_dwca_collections.py''. This script is set to run every Sunday at 8PM.&lt;br /&gt;
## &amp;lt;code&amp;gt;ssh [username]@osuc.biosci.ohio-state.edu&amp;lt;/code&amp;gt;&lt;br /&gt;
## &amp;lt;code&amp;gt;sudo nano /var/www/cgi-bin/export_dwca_collections.py&amp;lt;/code&amp;gt;&lt;br /&gt;
# Go to the ''handleDwCAExport'' function and add the taxon or collection you would like to export.&lt;br /&gt;
## The ''exportDwCA'' function of the OJ_Exporter package takes the collection ''Storage_Regime_ID'' as the identifier.&lt;br /&gt;
## The ''exportTaxonDwCA'' function of the OJ_Exporter package takes the taxon ''tnuid'' as the identifier.&lt;br /&gt;
# Execute the ''export_dwca_collections.py'' script immediately or wait until after the weekly export execution&lt;br /&gt;
# Download the DwC-A file created for the new collection or checklist&lt;br /&gt;
## Collection records example: ''http://osuc.biosci.ohio-state.edu/data_exports/dwca_1.zip''&lt;br /&gt;
## Taxon checklist example: ''http://osuc.biosci.ohio-state.edu/data_exports/dwca_tax_195000.zip''&lt;br /&gt;
# Create project in xBio:D IPT for the data you will be disseminating.&lt;br /&gt;
## Log into IPT and go to ''Manage Resources''&lt;br /&gt;
## Scroll to the bottom to ''Create New Resource'', specify a short name and resource type, then upload the previously exported file and create resource&lt;br /&gt;
## Fill in the metadata section of the resource with the appropriate values for provider, owner, etc.&lt;br /&gt;
# Log into the hymfiles server (''osuc.biosci.ohio-state.edu'') via Remote Desktop and open IPT DwC-A import script, ''populate_ipt.py''. The Python script is located in ''C:\backup_scripts''.&lt;br /&gt;
# Go to the ''handlePopulateIPT'' function and add the taxon or collection you would like to export.&lt;br /&gt;
## The numeric identifiers are the same as defined in the ''export'' step above&lt;br /&gt;
## The second parameter for the populate script is the resource short name specified above.&lt;br /&gt;
# Register and publish the new project. The resource will now be available on GBIF and can be shared with other data aggregators like iDigBio, VertNet, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Specialized Scripts for DB processing Tasks ==&lt;br /&gt;
These scripts include DOI lookup for xBio:D publication, processing the gender of people, and uploading of PDFs into Zenodo. The scripts are located in ''/scripts'' on the Database server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Aggregation Update ==&lt;br /&gt;
Many DB queries use tables that are aggregated from many separate tables to speed up processing. These aggregation tasks are performed automatically every Saturday under the DB job named ''aggregation_update''. These tasks include the following:&lt;br /&gt;
* '''''processDescriberIDs''''' - Goes through each taxonomic concept that does not already have a describer specified within the ''Protonym'' table and attempts to infer from an original description or replacement name literature annotation the author of the taxon. If a match is found, then the individual describer or describer party is added to the ''Protonym'' table.&lt;br /&gt;
* '''''update_people_stats''''' - Builds the ''AGGR_Person_Stats'' table that contains the # of occurrences collected, # of papers published, # of determinations made, # of distinct events collected, and the total # of contributions for each person.&lt;br /&gt;
* '''''update_genera_stats''''' - Builds the ''AGGR_Genus_Stats'' table that contains the # of occurrences determined, # of papers published, # of images taken, # of collections deposited, and distinct events collected for each tnuid.&lt;br /&gt;
* '''''update_place_children''''' - Builds the ''AGGR_Place_Children'' table that contains a place along with each subordinate place at any lower position within the geopolitical hierarchy.&lt;br /&gt;
* '''''update_taxon_children''''' - Builds the ''AGGR_Taxon_Children'' table that contains a tnuid along with each subordinate tnuid at any lower position within the taxonomic hierarchy. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_fossil_taxa''''' - Builds the ''AGGR_Fossil_Taxa'' table that contains a tcid for each taxon concept that is a fossil. Fossil status is only applied to species-group taxa, so this procedure also added taxa in which all of its subordinate taxa are fossils.&lt;br /&gt;
* '''''update_recordings''''' - Builds the ''AGGR_Taxon_Recordings'' table that contains a tnuid and recording info id for any recording that is contained within the taxon.&lt;br /&gt;
* '''''update_images''''' - Builds the ''AGGR_Taxon_Images'' table that contains a tnuid and image id for any specimen or taxon image that is contained within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_habitats''''' - Builds the ''AGGR_Habitat'' table that contains a tnuid and habitat for any occurrence that is contained within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_taxon_contributors''''' - Builds the ''AGGR_Taxon_Contribs'' table that contains a tnuid, contributor, and contribution flags for every contribution from the contributor within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_inst_tcids''''' - Builds the ''AGGR_Inst_Tcids'' table that contains the tcids for every collection where an occurrence is present. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_associations''''' - Builds the ''AGGR_Taxon_Assocs'' table that contains a tnuid and associated tnuid for every taxon that is contained within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_(OSUC)_Private_Portal&amp;diff=2182</id>
		<title>Collection (OSUC) Private Portal</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_(OSUC)_Private_Portal&amp;diff=2182"/>
		<updated>2015-08-07T19:49:31Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Welcome to the OSUC Private Portal'''&lt;br /&gt;
&lt;br /&gt;
This section of the wiki is private for users associated with the C.A. Triplehorn Insect Collection (OSUC). All subsequent pages, in order to be private, must be protected. Protect new pages by clicking the down arrow next to &amp;quot;View history&amp;quot; at the top, then select &amp;quot;Protect&amp;quot;. When the protection setting page is loaded, choose &amp;quot;OSUC users group&amp;quot; from the &amp;quot;Edit&amp;quot; box to reject all users who are not part of the OSUC users group from editing or reading the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* [[Miscellaneous Publications]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
* [[xBio:D Data Management]]&lt;br /&gt;
* [[xBio:D Applications]]&lt;br /&gt;
* [[xBio:D Database Server Management]]&lt;br /&gt;
* [[Collection Server Management]]&lt;br /&gt;
* [[Hymfiles Server Management]]&lt;br /&gt;
* [[Macroteleia Server Management]]&lt;br /&gt;
* [[Tyrannoscelio Server Management]]&lt;br /&gt;
* [[Initiate ASC Offsite Backup]]&lt;br /&gt;
* [[OBCP Cluster Management]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bioinformatics ==&lt;br /&gt;
* [[Data Validation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Hymfiles_Server_Management&amp;diff=2181</id>
		<title>Hymfiles Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Hymfiles_Server_Management&amp;diff=2181"/>
		<updated>2015-08-07T19:48:58Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Data Backup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Hymfiles Server Management (hymfiles.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''C:\inetpub\wwwroot''&lt;br /&gt;
* xBio:D IPT Directory: ''C:\ipt_data''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* PDF storage - http://hymfiles.biosci.ohio-state.edu/pdfs-osuc/&lt;br /&gt;
* PDF storage (Antbase) - http://hymfiles.biosci.ohio-state.edu/pdfs-antbase/&lt;br /&gt;
* DB Manager taxon images - http://hymfiles.biosci.ohio-state.edu/taxon_images&lt;br /&gt;
* Bonobo Git Server - http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/&lt;br /&gt;
* Redmine Bug Tracker/Project Manager - http://hymfiles.biosci.ohio-state.edu/redmine/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
File backups of the web files and the python files are handled by the RealtimeSync program using Windows Task Scheduler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2180</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2180"/>
		<updated>2015-08-07T19:35:35Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management (delong.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA - http://xbiod.osu.edu/dea/&lt;br /&gt;
* Specimage - http://specimage.osu.edu&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site - http://bugs.osu.edu&lt;br /&gt;
* Collection Web Site (Wordpress) - http://osuc.osu.edu/osuc-wp/&lt;br /&gt;
* xBio:D Wiki - http://xbiod.osu.edu/wiki/&lt;br /&gt;
* NFJ Lab Web Site - http://wasps.osu.edu&lt;br /&gt;
* BLB mp3 storage - http://osuc.osu.edu/blbmp3s/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
=== DEA Database Backup ===&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== File Backup ===&lt;br /&gt;
File backups of the web files and the python files are handled by the SyncToy program using Windows Task Scheduler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2179</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2179"/>
		<updated>2015-08-07T19:34:53Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management (delong.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA - http://xbiod.osu.edu/dea/&lt;br /&gt;
* Specimage - http://specimage.osu.edu&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site - http://bugs.osu.edu&lt;br /&gt;
* Collection Web Site (Wordpress) - http://osuc.osu.edu/osuc-wp/&lt;br /&gt;
* xBio:D Wiki - http://xbiod.osu.edu/wiki/&lt;br /&gt;
* NFJ Lab Web Site - http://wasps.osu.edu&lt;br /&gt;
* BLB mp3 storage - http://osuc.osu.edu/blbmp3s/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
=== DEA Database Backup= ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== File Backup ===&lt;br /&gt;
File backups of the web files and the python files are handled by the SyncToy program using Windows Task Scheduler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=VSysLab_Application_Information&amp;diff=2178</id>
		<title>VSysLab Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=VSysLab_Application_Information&amp;diff=2178"/>
		<updated>2015-08-07T19:31:19Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;VSysLab Application Information&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''vSysLab Application Information (http://vsyslab.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/vSysLab''&lt;br /&gt;
* APIs: ''vSysLab, OJ_Break (v1 &amp;amp; v2)''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/vsyslab.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* vSysLab-new.js&lt;br /&gt;
* vSysLab.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - vSysLab_Index.js&lt;br /&gt;
* add_new_det.html - vSysLab_AddNewDet.js&lt;br /&gt;
* contributors.html - vSysLab_Contributors.js&lt;br /&gt;
* export_lif.html - vSysLab_ExportLIF.js&lt;br /&gt;
* export_nexus.html - vSysLab_ExportNexus.js&lt;br /&gt;
* export_pwt-xml.html - vSysLab_ExportPWT-XML.js&lt;br /&gt;
* export_sdd.html - vSysLab_ExportSDD.js&lt;br /&gt;
* export_taxpub.html - vSysLab_ExportTaxPub.js&lt;br /&gt;
* home_page.html - vSysLab_HomePage.js&lt;br /&gt;
* import_lucid.html - vSysLab_ImportLucid.js&lt;br /&gt;
* import_nexus.html - vSysLab_ImportNexus.js&lt;br /&gt;
* invalid.html - vSysLab_Invalid.js&lt;br /&gt;
* list_collections.html - vSysLab_ListCollections.js&lt;br /&gt;
* make_desc.html - vSysLab_MakeDesc.js&lt;br /&gt;
* manage_chars.html - vSysLab_ManageChars.js&lt;br /&gt;
* manage_details.html - vSysLab_ManageDetails.js&lt;br /&gt;
* manage_images.html - vSysLab_ManageImages.js&lt;br /&gt;
* manage_matex.html - vSysLab_ManageMatEx.js&lt;br /&gt;
* manage_measurements.html - vSysLab_ManageMeasurements.js&lt;br /&gt;
* manage_OTUs.html - vSysLab_ManageOTUs.js&lt;br /&gt;
* new_user.html - vSysLab_NewUser.js&lt;br /&gt;
* prepare_matex.html - vSysLab_PrepareMatEx.js&lt;br /&gt;
* prepare_species.html - vSysLab_PrepareSpecies.js&lt;br /&gt;
* project_page.html - vSysLab_ProjectPage.js&lt;br /&gt;
* project_settings.html - vSysLab_ProjectSettings.js&lt;br /&gt;
* reorder_char_groups.html - vSysLab_ReorderCharGroups.js&lt;br /&gt;
* reorder_chars.html - vSysLab_ReorderChars.js&lt;br /&gt;
* reorder_otus.html - vSysLab_ReorderOTUs.js&lt;br /&gt;
* score_otu_char.html - vSysLab_ScoreOtuChar.js&lt;br /&gt;
* show_matrix.html - vSysLab_ShowMatrix.js&lt;br /&gt;
* show_otu_char.html - vSysLab_ShowOtuChar.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/vSysLab.pl&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/vSysLab-osuc.pl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Specimage_Application_Information&amp;diff=2177</id>
		<title>Specimage Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Specimage_Application_Information&amp;diff=2177"/>
		<updated>2015-08-07T19:30:25Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;Specimage Application Information&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Specimage Application Information (http://specimage.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Collection (delong.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''D:\wwwroot\Specimage''&lt;br /&gt;
* APIs: ''Specimage, OJ_Break (v1 &amp;amp; v2), vSysLab''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/specimage.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* Specimage.js&lt;br /&gt;
* Specimage.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - Specimage_Index.js&lt;br /&gt;
* addBodyPart.html - Specimage_AddBodyPart.js&lt;br /&gt;
* addBodyPartComb.html - Specimage_AddBodyPartComb.js&lt;br /&gt;
* addSpmImage.html - Specimage_AddSpmImage.js&lt;br /&gt;
* editSpmImage.html - Specimage_EditSpmImage.js&lt;br /&gt;
* getImageInfo.html - Specimage_GetImageInfo.js&lt;br /&gt;
* listSpmImages.html - Specimage_ListSpmImages.js&lt;br /&gt;
* manageProject.html - Specimage_ManageProject.js&lt;br /&gt;
* rss.html - Specimage_RSS.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://osuc.osuc.edu/scripts/Specimage.pl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Specimage_Application_Information&amp;diff=2176</id>
		<title>Specimage Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Specimage_Application_Information&amp;diff=2176"/>
		<updated>2015-08-07T19:30:04Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''Specimage Application Information (http://specimage.osu.edu)'''   == General Information == * Server: ''Collection (delong.biosci.ohio-state.edu)'' * Directory: ''D:...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Specimage Application Information (http://specimage.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Collection (delong.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''D:\wwwroot\Specimage''&lt;br /&gt;
* APIs: ''Specimage, OJ_Break (v1 &amp;amp; v2), vSysLab''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/specimage.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* Specimage.js&lt;br /&gt;
* Specimage.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - Specimage_Index.js&lt;br /&gt;
* addBodyPart.html - Specimage_AddBodyPart.js&lt;br /&gt;
* addBodyPartComb.html - Specimage_AddBodyPartComb.js&lt;br /&gt;
* addSpmImage.html - Specimage_AddSpmImage.js&lt;br /&gt;
* editSpmImage.html - Specimage_EditSpmImage.js&lt;br /&gt;
* getImageInfo.html - Specimage_GetImageInfo.js&lt;br /&gt;
* listSpmImages.html - Specimage_ListSpmImages.js&lt;br /&gt;
* manageProject.html - Specimage_ManageProject.js&lt;br /&gt;
* rss.html - Specimage_RSS.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://osuc.osuc.edu/scripts/Specimage.pl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=DEA_Application_Information&amp;diff=2175</id>
		<title>DEA Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=DEA_Application_Information&amp;diff=2175"/>
		<updated>2015-08-07T19:23:45Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;DEA Application Information&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''DEA Application Information (http://xbiod.osu.edu/dea/)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Collection (delong.biosci.ohio-state.edu)''&lt;br /&gt;
* Web Directory: ''D:\wwwroot\dea2''&lt;br /&gt;
* Django Directory: ''D:\python_projects\dea''&lt;br /&gt;
* APIs: ''DEA (Django), DEA (xBio:D), OJ_Break (v1)''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/dea.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Accessing Django Admin ==&lt;br /&gt;
=== General ===&lt;br /&gt;
The Django administrative interface for DEA provides access to the underlying MySQL database that supports DEA. This interface can allow an admin to change the owner for a file, remove actions associated with a file, remove a zombie'd background processing job status, and more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Logging Into Collection Server (Delong) ===&lt;br /&gt;
In Windows, open the Remove Desktop application and enter to ''osuc.osu.edu''. Log in using the Windows login credentials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Access Django Admin Web Interface ===&lt;br /&gt;
Open Internet Explorer, and type in the URL ''http://localhost:8081/admin/dea_rest/''. Log in using the Django login credentials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Background Processing ==&lt;br /&gt;
DEA uses Celery to handle the queuing and running of background tasks that are specified within the ''tasks.py'' file within DEA Django. A RabbitMQ server brokers the messages to process these tasks with the operating system. Each time a background task is started, a record in the 'DEA_Action_Status&amp;quot; table is created that contains the current status of the background task. Once the task completes, the status of the record is changed to the returned status of the task. DEA will periodically poll the status until a change occurs, and when it does, DEA will handle the message and remove the record.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changing Ownership of a File ==&lt;br /&gt;
In the Django Admin interface, go to the ''Dea_Files' table. The search at the top will search for a particular filename in which the owner is desired to be changed and filters on the right can additional assist in this task. When the file is located, click on the record and adjust the ''owner'' field to the appropriate username for the new owner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* dea.js&lt;br /&gt;
* dea.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - dea_index.js&lt;br /&gt;
* batchCheckTaxa.html - dea_batchCheckTaxa.js&lt;br /&gt;
* batchEnterLocalities.html - dea_batchEnterLocalities.js&lt;br /&gt;
* batchEnterSpecimens.html - dea_batchEnterSpecimens.js&lt;br /&gt;
* loadFile.html - dea_loadFile.js&lt;br /&gt;
* setCollectingMethods.html - dea_setCollectingMethods.js&lt;br /&gt;
* setCollectors.html - dea_setCollectors.js&lt;br /&gt;
* setDates.html - dea_setDates.js, Date_Interpreter.js&lt;br /&gt;
* setDeterminer.html - dea_setDeterminer.js&lt;br /&gt;
* setFieldCodes.html - dea_setFieldCodes.js&lt;br /&gt;
* setHabitats.html - dea_setHabitats.js&lt;br /&gt;
* setLocalities.html - dea_setLocalities.js&lt;br /&gt;
* stats.html - dea_stats.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=DEA_Application_Information&amp;diff=2174</id>
		<title>DEA Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=DEA_Application_Information&amp;diff=2174"/>
		<updated>2015-08-07T19:22:29Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''DEA Application Information (http://xbiod.osu.edu/dea/)'''   == General Information == * Server: ''Collection (delong.biosci.ohio-state.edu)'' * Web Directory: ''D:\...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''DEA Application Information (http://xbiod.osu.edu/dea/)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Collection (delong.biosci.ohio-state.edu)''&lt;br /&gt;
* Web Directory: ''D:\wwwroot\dea2''&lt;br /&gt;
* Django Directory: ''D:\python_projects\dea''&lt;br /&gt;
* APIs: ''DEA (Django), DEA (xBio:D), OJ_Break (v1)''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/dea.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Accessing Django Admin ==&lt;br /&gt;
=== General ===&lt;br /&gt;
The Django administrative interface for DEA provides access to the underlying MySQL database that supports DEA. This interface can allow an admin to change the owner for a file, remove actions associated with a file, remove a zombie'd background processing job status, and more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Logging Into Collection Server (Delong) ===&lt;br /&gt;
In Windows, open the Remove Desktop application and enter to ''osuc.osu.edu''. Log in using the Windows login credentials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Access Django Admin Web Interface ===&lt;br /&gt;
Open Internet Explorer, and type in the URL ''http://localhost:8081/admin/dea_rest/''. Log in using the Django login credentials.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Background Processing ==&lt;br /&gt;
DEA uses Celery to handle the queuing and running of background tasks that are specified within the ''tasks.py'' file within DEA Django. A RabbitMQ server brokers the messages to process these tasks with the operating system. Each time a background task is started, a record in the 'DEA_Action_Status&amp;quot; table is created that contains the current status of the background task. Once the task completes, the status of the record is changed to the returned status of the task. DEA will periodically poll the status until a change occurs, and when it does, DEA will handle the message and remove the record.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Changing Ownership of a File ==&lt;br /&gt;
In the Django Admin interface, go to the ''Dea_Files' table. The search at the top will search for a particular filename in which the owner is desired to be changed and filters on the right can additional assist in this task. When the file is located, click on the record and adjust the ''owner'' field to the appropriate username for the new owner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* dea.js&lt;br /&gt;
* dea.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - dea_index.js&lt;br /&gt;
* batchCheckTaxa.html - dea_batchCheckTaxa.js&lt;br /&gt;
* batchEnterLocalities.html - dea_batchEnterLocalities.js&lt;br /&gt;
* batchEnterSpecimens.html - dea_batchEnterSpecimens.js&lt;br /&gt;
* loadFile.html - dea_loadFile.js&lt;br /&gt;
* setCollectingMethods.html - dea_setCollectingMethods.js&lt;br /&gt;
* setCollectors.html - dea_setCollectors.js&lt;br /&gt;
* setDates.html - dea_setDates.js, Date_Interpreter.js&lt;br /&gt;
* setDeterminer.html - dea_setDeterminer.js&lt;br /&gt;
* setFieldCodes.html - dea_setFieldCodes.js&lt;br /&gt;
* setHabitats.html - dea_setHabitats.js&lt;br /&gt;
* setLocalities.html - dea_setLocalities.js&lt;br /&gt;
* stats.html - dea_stats.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=VSysLab_Application_Information&amp;diff=2173</id>
		<title>VSysLab Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=VSysLab_Application_Information&amp;diff=2173"/>
		<updated>2015-08-07T18:41:17Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''vSysLab Application Information (http://vsyslab.osu.edu)'''   == General Information == * Server: ''Database (osuc.biosci.ohio-state.edu)'' * Directory: ''/var/www/h...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''vSysLab Application Information (http://vsyslab.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/vSysLab''&lt;br /&gt;
* APIs: ''vSysLab, OJ_Break (v1 &amp;amp; v2)''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/vsyslab.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* vSysLab-new.js&lt;br /&gt;
* vSysLab.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - vSysLab_Index.js&lt;br /&gt;
* add_new_det.html - vSysLab_AddNewDet.js&lt;br /&gt;
* contributors.html - vSysLab_Contributors.js&lt;br /&gt;
* export_lif.html - vSysLab_ExportLIF.js&lt;br /&gt;
* export_nexus.html - vSysLab_ExportNexus.js&lt;br /&gt;
* export_pwt-xml.html - vSysLab_ExportPWT-XML.js&lt;br /&gt;
* export_sdd.html - vSysLab_ExportSDD.js&lt;br /&gt;
* export_taxpub.html - vSysLab_ExportTaxPub.js&lt;br /&gt;
* home_page.html - vSysLab_HomePage.js&lt;br /&gt;
* import_lucid.html - vSysLab_ImportLucid.js&lt;br /&gt;
* import_nexus.html - vSysLab_ImportNexus.js&lt;br /&gt;
* invalid.html - vSysLab_Invalid.js&lt;br /&gt;
* list_collections.html - vSysLab_ListCollections.js&lt;br /&gt;
* make_desc.html - vSysLab_MakeDesc.js&lt;br /&gt;
* manage_chars.html - vSysLab_ManageChars.js&lt;br /&gt;
* manage_details.html - vSysLab_ManageDetails.js&lt;br /&gt;
* manage_images.html - vSysLab_ManageImages.js&lt;br /&gt;
* manage_matex.html - vSysLab_ManageMatEx.js&lt;br /&gt;
* manage_measurements.html - vSysLab_ManageMeasurements.js&lt;br /&gt;
* manage_OTUs.html - vSysLab_ManageOTUs.js&lt;br /&gt;
* new_user.html - vSysLab_NewUser.js&lt;br /&gt;
* prepare_matex.html - vSysLab_PrepareMatEx.js&lt;br /&gt;
* prepare_species.html - vSysLab_PrepareSpecies.js&lt;br /&gt;
* project_page.html - vSysLab_ProjectPage.js&lt;br /&gt;
* project_settings.html - vSysLab_ProjectSettings.js&lt;br /&gt;
* reorder_char_groups.html - vSysLab_ReorderCharGroups.js&lt;br /&gt;
* reorder_chars.html - vSysLab_ReorderChars.js&lt;br /&gt;
* reorder_otus.html - vSysLab_ReorderOTUs.js&lt;br /&gt;
* score_otu_char.html - vSysLab_ScoreOtuChar.js&lt;br /&gt;
* show_matrix.html - vSysLab_ShowMatrix.js&lt;br /&gt;
* show_otu_char.html - vSysLab_ShowOtuChar.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/vSysLab.pl&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/vSysLab-osuc.pl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Database_Manager_Application_Information&amp;diff=2172</id>
		<title>Database Manager Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Database_Manager_Application_Information&amp;diff=2172"/>
		<updated>2015-08-07T17:42:07Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;Database Manager Application Information&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Database Manager Application Information (http://osuc-mgr.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/db_mgr''&lt;br /&gt;
* APIs: ''DBManager, OJ_Break (v1 &amp;amp; v2)''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/db_mgr.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* db_mgr.js&lt;br /&gt;
* db_mgr.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - db_mgr_index.js&lt;br /&gt;
* addAssocReference.html - db_mgr_addAssocReference.js&lt;br /&gt;
* addAssocType.html - db_mgr_addAssocType.js&lt;br /&gt;
* addBGSource.html - db_mgr_addBGSource.js&lt;br /&gt;
* addBLBLocality.html - db_mgr_addBLBLocality.js&lt;br /&gt;
* addCitedReference.html - db_mgr_addCitedReference.js&lt;br /&gt;
* addCollMethod.html - db_mgr_addCollMethod.js&lt;br /&gt;
* addInst.html - db_mgr_addInst.js&lt;br /&gt;
* addJournal.html - db_mgr_addJournal.js&lt;br /&gt;
* addLocality.html - db_mgr_addLocality.js&lt;br /&gt;
* addMicrophone.html - db_mgr_addMicrophone.js&lt;br /&gt;
* addOrg.html - db_mgr_addOrg.js&lt;br /&gt;
* addParty.html - db_mgr_addParty.js&lt;br /&gt;
* addPeriod.html - db_mgr_addPeriod.js&lt;br /&gt;
* addPerson.html - db_mgr_addPerson.js&lt;br /&gt;
* addPlace.html - db_mgr_addPlace.js&lt;br /&gt;
* addPub.html - db_mgr_addPub.js&lt;br /&gt;
* addRecorder.html - db_mgr_addRecorder.js&lt;br /&gt;
* addRecordingCut.html - db_mgr_addRecordingCut.js&lt;br /&gt;
* addTaxon.html - db_mgr_addTaxon.js&lt;br /&gt;
* addTaxonImage.html - db_mgr_addTaxonImage.js&lt;br /&gt;
* addUser.html - db_mgr_addUser.js&lt;br /&gt;
* addVocType.html - db_mgr_addVocType.js&lt;br /&gt;
* adminEditUserInfo.html - db_mgr_adminEditUserInfo.js&lt;br /&gt;
* annotate.html - db_mgr_annotate.js&lt;br /&gt;
* annotatePub.html - db_mgr_annotatePub.js&lt;br /&gt;
* editAnnotation.html - db_mgr_editAnnotation.js&lt;br /&gt;
* editLocality.html - db_mgr_editLocality.js&lt;br /&gt;
* editPerson.html - db_mgr_editPerson.js&lt;br /&gt;
* editPub.html - db_mgr_editPub.js&lt;br /&gt;
* editRecordingCut.html - db_mgr_editRecordingCut.js&lt;br /&gt;
* editSpecimen.html - db_mgr_editSpecimen.js&lt;br /&gt;
* editUserInfo.html - db_mgr_editUserInfo.js&lt;br /&gt;
* exportMetadata.html - db_mgr_exportMetadata.js&lt;br /&gt;
* extractSpecimens.html - db_mgr_extractSpecimens.js&lt;br /&gt;
* forgotUser.html - db_mgr_forgotUser.js&lt;br /&gt;
* linkPDF.html - db_mgr_linkPDF.js&lt;br /&gt;
* mailingList.html - db_mgr_mailingList.js&lt;br /&gt;
* manageAPI.html - db_mgr_manageAPI.js&lt;br /&gt;
* manageOHVisitors.html - db_mgr_manageOHVisitors.js&lt;br /&gt;
* manageTaxonConcept.html - db_mgr_manageTaxonConcept.js&lt;br /&gt;
* manageTaxonName.html - db_mgr_manageTaxonName.js&lt;br /&gt;
* paginatePDF.html - db_mgr_paginatePDF.js&lt;br /&gt;
* processBLBDigitalInfo.html - db_mgr_processBLBDigitalInfo.js&lt;br /&gt;
* synonymizePerson.html - db_mgr_synonymizePerson.js&lt;br /&gt;
* synonymizeTaxon.html - db_mgr_synonymizeTaxon.js&lt;br /&gt;
* uploadBLBmp3s.html - db_mgr_uploadBLBmp3s.js&lt;br /&gt;
* uploadPDF.html - db_mgr_uploadPDF.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/db_mgr.pl&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/db_mgr-hymfiles.pl&lt;br /&gt;
* http://osuc.osuc.edu/scripts/db_mgr-delong.py&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/OJ_Break.py&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/vSysLab-osuc.pl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Database_Manager_Application_Information&amp;diff=2171</id>
		<title>Database Manager Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Database_Manager_Application_Information&amp;diff=2171"/>
		<updated>2015-08-07T17:41:42Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''Database Manager Application Information (http://osuc-mgr.osu.edu)'''   == General Information == * Server: ''Database (osuc.biosci.ohio-state.edu)'' * Directory: ''...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Database Manager Application Information (http://osuc-mgr.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/db_mgr''&lt;br /&gt;
* APIs: ''DBManager, OJ_Break (v1 &amp;amp; v2)''&lt;br /&gt;
* Git URL: ''http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/db_mgr.git''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* db_mgr.js&lt;br /&gt;
* db_mgr.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - db_mgr_index.js&lt;br /&gt;
* addAssocReference.html - db_mgr_addAssocReference.js&lt;br /&gt;
* addAssocType.html - db_mgr_addAssocType.js&lt;br /&gt;
* addBGSource.html - db_mgr_addBGSource.js&lt;br /&gt;
* addBLBLocality.html - db_mgr_addBLBLocality.js&lt;br /&gt;
* addCitedReference.html - db_mgr_addCitedReference.js&lt;br /&gt;
* addCollMethod.html - db_mgr_addCollMethod.js&lt;br /&gt;
* addInst.html - db_mgr_addInst.js&lt;br /&gt;
* addJournal.html - db_mgr_addJournal.js&lt;br /&gt;
* addLocality.html - db_mgr_addLocality.js&lt;br /&gt;
* addMicrophone.html - db_mgr_addMicrophone.js&lt;br /&gt;
* addOrg.html - db_mgr_addOrg.js&lt;br /&gt;
* addParty.html - db_mgr_addParty.js&lt;br /&gt;
* addPeriod.html - db_mgr_addPeriod.js&lt;br /&gt;
* addPerson.html - db_mgr_addPerson.js&lt;br /&gt;
* addPlace.html - db_mgr_addPlace.js&lt;br /&gt;
* addPub.html - db_mgr_addPub.js&lt;br /&gt;
* addRecorder.html - db_mgr_addRecorder.js&lt;br /&gt;
* addRecordingCut.html - db_mgr_addRecordingCut.js&lt;br /&gt;
* addTaxon.html - db_mgr_addTaxon.js&lt;br /&gt;
* addTaxonImage.html - db_mgr_addTaxonImage.js&lt;br /&gt;
* addUser.html - db_mgr_addUser.js&lt;br /&gt;
* addVocType.html - db_mgr_addVocType.js&lt;br /&gt;
* adminEditUserInfo.html - db_mgr_adminEditUserInfo.js&lt;br /&gt;
* annotate.html - db_mgr_annotate.js&lt;br /&gt;
* annotatePub.html - db_mgr_annotatePub.js&lt;br /&gt;
* editAnnotation.html - db_mgr_editAnnotation.js&lt;br /&gt;
* editLocality.html - db_mgr_editLocality.js&lt;br /&gt;
* editPerson.html - db_mgr_editPerson.js&lt;br /&gt;
* editPub.html - db_mgr_editPub.js&lt;br /&gt;
* editRecordingCut.html - db_mgr_editRecordingCut.js&lt;br /&gt;
* editSpecimen.html - db_mgr_editSpecimen.js&lt;br /&gt;
* editUserInfo.html - db_mgr_editUserInfo.js&lt;br /&gt;
* exportMetadata.html - db_mgr_exportMetadata.js&lt;br /&gt;
* extractSpecimens.html - db_mgr_extractSpecimens.js&lt;br /&gt;
* forgotUser.html - db_mgr_forgotUser.js&lt;br /&gt;
* linkPDF.html - db_mgr_linkPDF.js&lt;br /&gt;
* mailingList.html - db_mgr_mailingList.js&lt;br /&gt;
* manageAPI.html - db_mgr_manageAPI.js&lt;br /&gt;
* manageOHVisitors.html - db_mgr_manageOHVisitors.js&lt;br /&gt;
* manageTaxonConcept.html - db_mgr_manageTaxonConcept.js&lt;br /&gt;
* manageTaxonName.html - db_mgr_manageTaxonName.js&lt;br /&gt;
* paginatePDF.html - db_mgr_paginatePDF.js&lt;br /&gt;
* processBLBDigitalInfo.html - db_mgr_processBLBDigitalInfo.js&lt;br /&gt;
* synonymizePerson.html - db_mgr_synonymizePerson.js&lt;br /&gt;
* synonymizeTaxon.html - db_mgr_synonymizeTaxon.js&lt;br /&gt;
* uploadBLBmp3s.html - db_mgr_uploadBLBmp3s.js&lt;br /&gt;
* uploadPDF.html - db_mgr_uploadPDF.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/db_mgr.pl&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/db_mgr-hymfiles.pl&lt;br /&gt;
* http://osuc.osuc.edu/scripts/db_mgr-delong.py&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/OJ_Break.py&lt;br /&gt;
* http://osuc.biosci.ohio-state.edu/cgi-bin/vSysLab-osuc.pl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2170</id>
		<title>XBio:D Applications</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2170"/>
		<updated>2015-08-07T16:11:57Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Applications'''&lt;br /&gt;
&lt;br /&gt;
This section provides basic information on the structure of xBio:D web applications and links to pages for each individual application. The application pages have information on which server the application is located, the file structure and interactions, and any niche maintenance feature that may be useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Structure ==&lt;br /&gt;
Each xBio:D web application is built upon a MVC (Model-View-Controller) concept. The model, which contains the data, is located in the xBio:D database and is accessed via xBio:D APIs. Each application tends to have its own API for entering and retrieving application-specific information into the database and uses the OJ_Break API to obtain general information. The view of the applications are the HTML pages and CSS styling that provide a look-and-feel and structure for the data handled by the controller. The controller part is mediated by JavaScript and uses the xBio:D APIs to populate information retrieved from the database into the structure from the HTML pages. Each HTML page has its own JavaScript page that is included on page load. Every application has its own JavaScript page as well that is also included on page load for each page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
* [[HOL Application Information]]&lt;br /&gt;
* [[DEA Application Information]]&lt;br /&gt;
* [[Database Manager Application Information]]&lt;br /&gt;
* [[vSysLab Application Information]]&lt;br /&gt;
* [[Specimage Application Information]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Category:XBio:D_Application_Info&amp;diff=2169</id>
		<title>Category:XBio:D Application Info</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Category:XBio:D_Application_Info&amp;diff=2169"/>
		<updated>2015-08-07T16:10:24Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Redirected page to XBio:D Applications&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[XBio:D Applications]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=HOL_Application_Information&amp;diff=2168</id>
		<title>HOL Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=HOL_Application_Information&amp;diff=2168"/>
		<updated>2015-08-07T16:09:40Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;HOL Application Information&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''HOL Application Information (http://hol.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/HymOnline''&lt;br /&gt;
* APIs: ''OJ_Break (v1)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* HymOnline.js&lt;br /&gt;
* HymOnline.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - HymOnline_Index.js&lt;br /&gt;
* agent-full.html - HymOnline_Agent-Full.js&lt;br /&gt;
* export.html - HymOnline_Export.js&lt;br /&gt;
* inst-full.html - HymOnline_Inst-Full.js&lt;br /&gt;
* ios.html - HymOnline_iOS.js&lt;br /&gt;
* journal-full.html - HymOnline_Journal-Full.js&lt;br /&gt;
* literature-viewer.html - HymOnline_Literature-Viewer.js&lt;br /&gt;
* map-full.html - HymOnline_Map-Full.js&lt;br /&gt;
* map-large.html - HymOnline_Map-Large.js&lt;br /&gt;
* place-full.html - HymOnline_Place-Full.js&lt;br /&gt;
* reference-full.html - HymOnline_Reference-Full.js&lt;br /&gt;
* rss.html - HymOnline_RSS.js&lt;br /&gt;
* updates.html - HymOnline_Updates.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/OJ_Break.pl&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/OJ_Break.py&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=HOL_Application_Information&amp;diff=2167</id>
		<title>HOL Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=HOL_Application_Information&amp;diff=2167"/>
		<updated>2015-08-07T16:09:20Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''HOL Application Information (http://hol.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/HymOnline''&lt;br /&gt;
* APIs: ''OJ_Break (v1)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* HymOnline.js&lt;br /&gt;
* HymOnline.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - HymOnline_Index.js&lt;br /&gt;
* agent-full.html - HymOnline_Agent-Full.js&lt;br /&gt;
* export.html - HymOnline_Export.js&lt;br /&gt;
* inst-full.html - HymOnline_Inst-Full.js&lt;br /&gt;
* ios.html - HymOnline_iOS.js&lt;br /&gt;
* journal-full.html - HymOnline_Journal-Full.js&lt;br /&gt;
* literature-viewer.html - HymOnline_Literature-Viewer.js&lt;br /&gt;
* map-full.html - HymOnline_Map-Full.js&lt;br /&gt;
* map-large.html - HymOnline_Map-Large.js&lt;br /&gt;
* place-full.html - HymOnline_Place-Full.js&lt;br /&gt;
* reference-full.html - HymOnline_Reference-Full.js&lt;br /&gt;
* rss.html - HymOnline_RSS.js&lt;br /&gt;
* updates.html - HymOnline_Updates.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/OJ_Break.pl&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/OJ_Break.py&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;br /&gt;
[[Category:xBio:D Application Info]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=HOL_Application_Information&amp;diff=2166</id>
		<title>HOL Application Information</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=HOL_Application_Information&amp;diff=2166"/>
		<updated>2015-08-07T15:58:26Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''HOL Application Information (http://hol.osu.edu)'''   == General Information == * Server: ''Database (osuc.biosci.ohio-state.edu)'' * Directory: ''/var/www/html/HymO...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''HOL Application Information (http://hol.osu.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Information ==&lt;br /&gt;
* Server: ''Database (osuc.biosci.ohio-state.edu)''&lt;br /&gt;
* Directory: ''/var/www/html/HymOnline''&lt;br /&gt;
* APIs: ''OJ_Break (v1)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
=== Site-Wide ===&lt;br /&gt;
* HymOnline.js&lt;br /&gt;
* HymOnline.css&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pages ===&lt;br /&gt;
* index.html - HymOnline_Index.js&lt;br /&gt;
* agent-full.html - HymOnline_Agent-Full.js&lt;br /&gt;
* export.html - HymOnline_Export.js&lt;br /&gt;
* inst-full.html - HymOnline_Inst-Full.js&lt;br /&gt;
* ios.html - HymOnline_iOS.js&lt;br /&gt;
* journal-full.html - HymOnline_Journal-Full.js&lt;br /&gt;
* literature-viewer.html - HymOnline_Literature-Viewer.js&lt;br /&gt;
* map-full.html - HymOnline_Map-Full.js&lt;br /&gt;
* map-large.html - HymOnline_Map-Large.js&lt;br /&gt;
* place-full.html - HymOnline_Place-Full.js&lt;br /&gt;
* reference-full.html - HymOnline_Reference-Full.js&lt;br /&gt;
* rss.html - HymOnline_RSS.js&lt;br /&gt;
* updates.html - HymOnline_Updates.js&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Helper Scripts ===&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/OJ_Break.pl&lt;br /&gt;
* http://hymfiles.biosci.ohio-state.edu/scripts/OJ_Break.py&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2165</id>
		<title>XBio:D Applications</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2165"/>
		<updated>2015-08-07T15:02:57Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Applications'''&lt;br /&gt;
&lt;br /&gt;
This section provides basic information on the structure of xBio:D web applications and links to pages for each individual application. The application pages have information on which server the application is located, the file structure and interactions, and any niche maintenance feature that may be useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Structure ==&lt;br /&gt;
Each xBio:D web application is built upon a MVC (Model-View-Controller) concept. The model, which contains the data, is located in the xBio:D database and is accessed via xBio:D APIs. Each application tends to have its own API for entering and retrieving application-specific information into the database and uses the OJ_Break API to obtain general information. The view of the applications are the HTML pages and CSS styling that provide a look-and-feel and structure for the data handled by the controller. The controller part is mediated by JavaScript and uses the xBio:D APIs to populate information retrieved from the database into the structure from the HTML pages. Each HTML page has its own JavaScript page that is included on page load. Every application has its own JavaScript page as well that is also included on page load for each page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
* [[HOL Application Information]]&lt;br /&gt;
* [[DEA Application Information]]&lt;br /&gt;
* [[Database Manager Application Information]]&lt;br /&gt;
* [[vSysLab Application Information]]&lt;br /&gt;
* [[Specimage Application Information]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2164</id>
		<title>Tyrannoscelio Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2164"/>
		<updated>2015-08-07T14:31:03Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Mount Remote Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Tyrannoscelio Server Management (tyrannoscelio.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Data Directory: ''/data/''&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
=== Offsite Backup Job ===&lt;br /&gt;
Tyrannoscelio mediates transferring backup files from MegaRaid, the inside the rack NAS, to the ASC offsite shared share. Both of these devices are mounted as directories on the server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See cron jobs: &amp;lt;code&amp;gt;sudo crontab -l&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Mount Remote Devices ===&lt;br /&gt;
The system-wide mounted devices are located in the fstab file and can be modified through the ''nano'' program: &amp;lt;code&amp;gt;sudo nano /etc/fstab&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MegaRaid share is mounted with the line &amp;lt;code&amp;gt;//128.146.250.101/OSUC_Share /share/MegaRaid_Share cifs credentials=/home/jcora/.megaraid.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will not need updated unless the ''jcora'' password changes.&lt;br /&gt;
&lt;br /&gt;
The ASC share is mounted with the line &amp;lt;code&amp;gt;//research.asc.ohio-state.edu/units/EEOB/njohnson-backup /share/ASC_Share cifs credentials=/home/nfj/.asc_nas.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will need updated every time the password for the Ohio State federated login of ''johnson.2'' changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2163</id>
		<title>Tyrannoscelio Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2163"/>
		<updated>2015-08-07T14:30:24Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* General Locations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Tyrannoscelio Server Management (tyrannoscelio.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Data Directory: ''/data/''&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
=== Offsite Backup Job ===&lt;br /&gt;
Tyrannoscelio mediates transferring backup files from MegaRaid, the inside the rack NAS, to the ASC offsite shared share. Both of these devices are mounted as directories on the server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See cron jobs: &amp;lt;code&amp;gt;sudo crontab -l&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Mount Remote Devices ===&lt;br /&gt;
The system-wide mounted devices are located in the fstab file and can be modified through the ''nano'' program: &amp;lt;code&amp;gt;sudo nano /etc/fstab&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MegaRaid share is mounted with the line &amp;lt;code&amp;gt;//128.146.250.101/OSUC_Share /share/MegaRaid_Share cifs credentials=/home/jcora/.megaraid.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will not need updated unless the ''jcora'' password changes.&lt;br /&gt;
&lt;br /&gt;
The ASC share is mounted with the line &amp;lt;code&amp;gt;//research.asc.ohio-state.edu/units/EEOB/njohnson-backup /share/ASC_Share cifs credentials=/home/nfj/.asc_nas.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will need updated every time the password for the Ohio State federated login of''johnson.2'' changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2162</id>
		<title>Tyrannoscelio Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Tyrannoscelio_Server_Management&amp;diff=2162"/>
		<updated>2015-08-06T21:08:46Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''Tyrannoscelio Server Management (tyrannoscelio.biosci.ohio-state.edu)'''   == General Locations ==   == Data Backup == === Offsite Backup Job === Tyrannoscelio media...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Tyrannoscelio Server Management (tyrannoscelio.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
=== Offsite Backup Job ===&lt;br /&gt;
Tyrannoscelio mediates transferring backup files from MegaRaid, the inside the rack NAS, to the ASC offsite shared share. Both of these devices are mounted as directories on the server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See cron jobs: &amp;lt;code&amp;gt;sudo crontab -l&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Mount Remote Devices ===&lt;br /&gt;
The system-wide mounted devices are located in the fstab file and can be modified through the ''nano'' program: &amp;lt;code&amp;gt;sudo nano /etc/fstab&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MegaRaid share is mounted with the line &amp;lt;code&amp;gt;//128.146.250.101/OSUC_Share /share/MegaRaid_Share cifs credentials=/home/jcora/.megaraid.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will not need updated unless the ''jcora'' password changes.&lt;br /&gt;
&lt;br /&gt;
The ASC share is mounted with the line &amp;lt;code&amp;gt;//research.asc.ohio-state.edu/units/EEOB/njohnson-backup /share/ASC_Share cifs credentials=/home/nfj/.asc_nas.cred,gid=osuc_backup,dir_mode=0770,file_mode=0770 0 0&amp;lt;/code&amp;gt;, which will need updated every time the password for the Ohio State federated login of''johnson.2'' changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Macroteleia_Server_Management&amp;diff=2161</id>
		<title>Macroteleia Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Macroteleia_Server_Management&amp;diff=2161"/>
		<updated>2015-08-06T15:35:38Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;Macroteleia Server Management&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Macroteleia Server Management (macroteleia.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Apache Web Directory: ''/var/www/''&lt;br /&gt;
* GBrowse Directory: ''/etc/gbrowse2/''&lt;br /&gt;
* Platygastroid Sequence Data Directory: ''/seqs/''&lt;br /&gt;
* Trissolcus basalis Assemblies and Reads Directory: ''/media/VolRaid1/''&lt;br /&gt;
* Windows Virtual Machine Directory: ''/vm_images/''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
See cron jobs: &amp;lt;code&amp;gt;sudo crontab -l&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Macroteleia_Server_Management&amp;diff=2160</id>
		<title>Macroteleia Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Macroteleia_Server_Management&amp;diff=2160"/>
		<updated>2015-08-06T15:35:07Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''Macroteleia Server Management (macroteleia.biosci.ohio-state.edu)'''   == General Locations == * Apache Web Directory: ''/var/www/'' * GBrowse Directory: ''/etc/gbro...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Macroteleia Server Management (macroteleia.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Apache Web Directory: ''/var/www/''&lt;br /&gt;
* GBrowse Directory: ''/etc/gbrowse2/''&lt;br /&gt;
* Platygastroid Sequence Data Directory: ''/seqs/''&lt;br /&gt;
* Trissolcus basalis Assemblies and Reads Directory: ''/media/VolRaid1/''&lt;br /&gt;
* Windows Virtual Machine Directory: ''/vm_images/''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
See cron jobs: &amp;lt;code&amp;gt;sudo crontab -l&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Biological_Association_Type_Terms&amp;diff=2159</id>
		<title>Biological Association Type Terms</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Biological_Association_Type_Terms&amp;diff=2159"/>
		<updated>2015-08-06T15:15:53Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Biological Association Type Terms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Introduction'''&lt;br /&gt;
&lt;br /&gt;
This section contains information on the available biological association terms that are currently available in the xBio:D system. Biological associations within xBio:D represents a two-way relationship between the first organism and the second, and the association type is separated by a slash (/). For example, if you want to show a parasitoid-host relationship in which the specimen record you have is for the parasitoid (A) and the unvouchered associate (B) is its host, the association type ''emerged from egg of / host egg of'' would be read ''parasitoid (A) emerged from host (B)'' and conversely ''host (B) is a host egg of parasitoid (A)''. If you would like another biological association term added into xBio:D, please contact [mailto:cora.1@osu.edu Joe Cora] and request the addition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Biological Association Type Terms ==&lt;br /&gt;
{|&lt;br /&gt;
!Association Type&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|adult of / pupa of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|among pieces of fallen nest of / fallen nest pieces contained&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|at base of large / large with base containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|between leaves of / leaves containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|burrowing into / contains burrowing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|buzz pollinating / buzz pollinated by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected in / contains&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected in drilled / drilled collecting site of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected near / living near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected near eggs / eggs present near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected near flowering / flowering living near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected near gall / gall present near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected near nymph of / nymph present near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected near stand of / stand present near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected on / collecting site of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected under / collecting site above&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected with / used to collect&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected with dung of / dung used to collect&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected with pheromone of / pheromone used to collect&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collected with rotting / rotting used to collect&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|collection site of / collected on&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|egg ectoparasite of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|egg parasite of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|egg predator of / prey egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from / produced&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from cocoon of / host cocoon of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from diapausing eggs of / diapausing host eggs of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from egg of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from egg sac of / host egg sac of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from freshly killed / freshly killed host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from gall of / host gall of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from immature of / host immature of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from larva of / host larva of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from leaf of / host leaf of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from mossy gall of / host mossy gall of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from mummy of / host mummy of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from nest of / host nest of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from nymph of / host nymph of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from ootheca of / host ootheca of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from pod of / host pod of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from pole of / host pole containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from pupa of / host pupa of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from pupal chamber of / host pupal chamber of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from puparium of / host puparium of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from seed of / host seed of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from sentinel egg mass of / host sentinel egg mass of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from tunnel of / host tunnel of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|emerged from twig of / host twig of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|fed upon by / feeding on&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on / fed upon by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on bark of / fed upon bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on bud, shoot of / fed upon bud, shoot by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on bulb of / fed upon bulb by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on egg of / fed on egg by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on flower of / fed on flower by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on fruit, nut, seed of / fed on fruit, nut, seed by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on gall of / fed on gall by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on leaf gall of / fed upon leaf gall by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on leaf of / fed upon leaf by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on root of / fed upon root by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on shoot of / fed upon shoot by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on silk and end of ear of / fed upon silk and end of ear by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on stem of / fed upon stem by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on tree trunk of / fed upon tree trunk by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|feeding on twig, branch of / fed upon twig, branch by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|flying after / flying from&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|gregarious egg parasitoid of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|host egg of / emerged from egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|host egg of / solitary egg parasitoid of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|host larva of / larval parasitoid of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|host of / parasite of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|hyperparasite of / host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in abandoned nest of / abandoned nest containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in artificial colony of / artificial colony containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in bark crack of / bark crack containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in burrow of / burrow containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in buttress of / buttress containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in canopy of / canopy containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in catface of living / living with catface containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in center of rotten / rotten center containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in clump of / clump containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in cocoon of / cocoon containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in colony of / colony containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in culture of / culture containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in dead log of / dead log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying / decayed containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying bark of / decayed bark containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying fruit, nut, seed of / decayed fruit, nut, seed containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying log of / decayed log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying mulch of / decayed mulch containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying root of / decayed root containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in decaying tree stump of / decayed tree stump containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in duff of / duff containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in dunnage of / dunnage containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in fallen of / fallen containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in field with / in field with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in flower head of / flower head containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in gall of / gall containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in gall of flowering / flowering with gall containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in galleries of / galleries containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in leaf nest of / leaf nest containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in leaf sheath of / leaf sheath containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in litter of / litter containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in litter of treehole of / litter of treehole containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in litter under log of / litter under log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in litter with / in litter with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in log of / log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in log with / in log with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in manure (feces) of / manure (feces) containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in mine of / mine containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in moist decayed log of / moist decayed log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in nest of / nest containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in nest on body of / body in nest containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in nest with dead chick of / dead chick within nest with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in nest within / containing nest with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in nose of / nose containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in paneling of / paneling containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in petiole of / petiole containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in roast of / roast containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in roost of / roost containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in root / root containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in rotten / rotten containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in rotten stump of / rotten stump containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in scat of / scat containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in shell of / shell containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in silk tube of / silk tube containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in soil with / in soil with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in soil with bulb of / bulb in soil with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in soil with root of / root in soil with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in square of / square containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in stable with / stable containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in stand of / stand containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in stem of / stem containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in stem gall of / stem gall containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in stomach of / stomach containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in straw of / straw containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in stubble of / stubble containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in subterranean dump of / subterranean dump containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in thicket of / thicket containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in treehole of / treehole containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in trunk of / trunk containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in tunnel of / tunnel containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in vein on underside of leaf of / vein on under of leaf containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in water with / in water with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in web of / web containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|in young leaf of / young leaf containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|infected by / infecting&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|inhabits / habitat for&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|internal parasite of / internal host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|larval parasite of / host larva of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|larval parasitoid of / host larva of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|larval predator of / prey larva of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living in / lived in by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living in colon of / lived within colon by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living in hypodermis of / lived within hypodermis by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living in pitcher of / lived within pitcher by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living in synovial fluid of / lived within synovial fluid by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living in treehole of / lived within treehole by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on / lived on by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on bark of / lived on bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on body of / lived on body by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on branch of / lived on branch by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on bud of / lived on bud by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on bulb of / lived on bulb by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on feather of / lived on feather by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on flower of / lived on flower by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on fruit, nut, seed of / lived on fruit, nut, seed by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on hair follicle of / lived on hair follicle by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on hair of / lived on hair by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on head of / lived on head by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on leaf of / lived on leaf by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on log of / lived on log by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on male cone of / lived on male cone by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on mosaic infected / (mosaic infected) lived on by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on nut, seed of / lived on nut, seed by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on pupa of / lived on pupa by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on root of / lived on root by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on sapflow of / lived on sapflow by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on seed of / lived on seed by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on shoot of / lived on shoot by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on stem of / lived on stem by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on tail of / lived on tail by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on tree trunk of / lived on tree trunk by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on twig, branch of / lived on twig, branch by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on wash of / lived on wash by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living on wing of / lived on wing by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living under bark of / lived under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living under bark of dead / lived under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living under bark of fallen / lived under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living under bark of living / lived under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living under bark of rotten trunk of / lived under bark of rotten trunk by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living under chips of cut / lived under chips by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|living with / living with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|mother parasitic on / host of mother of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|nest containing / in nest of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on abdomen of / abdomen containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on aphid infested / aphid infested containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on ball of / ball containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on bark of / bark containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on bark of dead / dead with bark containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on bark of living / living with bark containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on bloom of / bloom containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on blossom of / blossom containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on body of / body containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on branch of / branch containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on bulb of / bulb containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on cadaver of / cadaver containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on cone of / cone containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on cone flower of / cone flower containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on coppice of / coppice containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on corrigated &amp;amp; crumpled leaf of dwarfed / (dwarfed) corrigated &amp;amp; crumpled leaf containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead / dead containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead branch of / dead branch containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead leaf of / dead leaf containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead limb of / dead limb containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead limb or trunk of / dead limb or trunk containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead or dying twig of / dead or dying twig containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead remains of / upon dead remains by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead twig of / dead twig containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead vine of / dead vine containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dead, standing / dead, standing containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on decayed / decayed containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on decayed log of / decayed log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on decayed stump of / decayed stump containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on decaying of / decaying containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on deep sear of living / living with deep sear containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dense growth of / dense growth containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dry / dry containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dry dung of / dry dung containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on dung of / dung containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on ear of / ear containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on egg of / egg containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on egg sac of / egg sac containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on eye of / eye containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on female adult of / female adult containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on fire scorched of / fire scorched containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on flower bud of / flower bud containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on flower of / flower containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on flowering / flowering containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on flowerless / flowerless containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on foliage of / foliage containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on fresh wound of / fresh wound containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on freshly cut / freshly cut containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on frond of / frond containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on fruit of / fruit containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on fruiting / fruiting containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on gills of / gills containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on guano of / guano contaning&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on heavily curled leaf of / heavily curled leaf containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on inflorescence of / inflorescence containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on lamina of / lamina containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on large, hollow / large, hollow containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on leaf axil of / leaf axil containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on leaf of / leaf containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on leaf petiole of / leaf petiole containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on leaflet of / leaflet containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on log of / log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on midrib of / midrib containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on moldy, shelled / moldy, shelled containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on needle of / needle containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on or near / containing or near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on or near flowering / flowering containing or near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on or near flowers of / flowers containing or near&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on overripe fruit of / overripe fruit containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on paddy edge of / paddy edge containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on paddy of / paddy containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on pod of / pod containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on rosette / rosette containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on rotten / rotten containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on rotten fruit of / rotten fruit containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on rotten log of / rotten log containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on rotting / rotting containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on scrub / scrub containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on seed of / seed containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on seedling of / seedling containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on short / short containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on skin of / skin containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on stalk of / stalk containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on stem of / stem containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on sticky seed of / sticky seed containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on stomach of cadaver of / stomach of cadaver containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on stored product of / stored product containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on stump of / stump containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on thorax of / thorax containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on top of flower of / top of flower containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on tree of / tree containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on trunk of / trunk containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on trunk of dead / dead with trunk containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on trunk of dying / dying with trunk containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on twig of / twig containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on underside of frond of / underside of frond containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on unflowered / unflowered containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on vine of / vine containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on wild of / wild containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on wing of / wing containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on wound of twig of / wound of twig containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|on young / young containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ovipositing into bud of / host bud of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ovipositing into egg of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ovipositing into gall of / host gall of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ovipositing into young sprout of / young sprout containing&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|paraphage on / host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasite of / host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic in ear of / host ear of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic in nose of / host nose of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic in skin of / host skin of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on abdomen of / host abdomen of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on body of / host body of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on branchial chamber of / host branchial chamber of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on cloaca of / host cloaca of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on coxa of / host coxa of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on ear of / host ear of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on egg of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on eye of / host eye of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on genitalia of / host genitalia of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on gills of / host gills of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on hair follicle of / host hair follicle of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on hair of / host hair of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on head of / host head of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on hypodermis of / host hypodermis of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on larva of / host larva of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on limb of / host limb of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on lung of / host lung of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on mouth of / host mouth of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on nipple of / host nipple of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on nose of / host nose of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on pupa of / host pupa of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on quill feather (covert) of / host quill feather (covert) of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on quill feather (flight feather) of / host quill feather (flight feather) of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on quill feather (tail feather) of / host quill feather (tail feather) of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on quill feather of / host quill feather of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on sentinel egg of / host sentinel egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on shoot of / host shoot of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on skin of / host skin of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on stomach of / host stomach of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on tail of / host tail of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on thorax of / host thorax of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on trachea of / host trachea of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on wash of / host wash of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic on wing of / host wing of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic under elytra of / under elytral host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitic under scales of / under scales host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|parasitoid of / host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|patolling on / patrolled by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on / host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on abdomen of / host abdomen of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on alate / alate host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on antenna of / host antenna of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on body of / host body of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on coxa of / host coxa of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on eye of / host eye of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on hair follicle of / host hair follicle of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on head of / host head of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on leg of / host leg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on limb of / host limb of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on tail of / host tail of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on thorax of / host thorax of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic on wing of / host wing of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic under elytra of / under elytral host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|phoretic under supra-anal plate of / under supra-anal plate host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|pollinating / pollinated by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|predator of / prey of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|prey of / predator of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|pupa of / adult of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|recorded in background with / in background for recording of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|solitary egg parasitoid of / host egg of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|stinging neck of / neck being stung by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|stomach parasite of / host stomach of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|subcortically living in dead / dead subcortically living in by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|subcutaneous parasite of / subcutaneous host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|subcutaneously living in / subcutaneously lived in by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|tracheal parasite of / tracheal host of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under bark of / under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under bark of dead / dead under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under bark of dead or dying twig or branch / dead or dying twig or branch under bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under bark of trunk of dead / dead under bark of trunk by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under dead / under dead by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under dead stem of / under dead stem by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under loose bark of / under loose bark by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under manure (feces) of / under manure (feces) by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under rocks with / under rocks with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|under seed of / under seed by&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|unspecified association / unspecified association&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|wing parasite of / host wing of&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|with eggs of / eggs with&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|with roots of / roots with&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Data Entry Assistant]]&lt;br /&gt;
[[Category:xBio:D Controlled Vocabularies]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=User:Hemly.1&amp;diff=2157</id>
		<title>User:Hemly.1</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=User:Hemly.1&amp;diff=2157"/>
		<updated>2015-08-05T16:54:49Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My name is Sara Hemly.  I am a curatorial technician in the C. A. Triplehorn Insect Collection at The Ohio State University in Columbus, Ohio.  My name is Sara Hemly.  I am a curatorial technician in the C. A. Triplehorn Insect Collection at The Ohio State University in Columbus, Ohio.&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=User_talk:Hemly.1&amp;diff=2158</id>
		<title>User talk:Hemly.1</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=User_talk:Hemly.1&amp;diff=2158"/>
		<updated>2015-08-05T16:54:49Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''xBio:D Wiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Jcora|Jcora]] ([[User talk:Jcora|talk]]) 12:54, 5 August 2015 (EDT)&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2156</id>
		<title>XBio:D Applications</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2156"/>
		<updated>2015-08-03T18:03:42Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Applications'''&lt;br /&gt;
&lt;br /&gt;
This section provides basic information on the structure of xBio:D web applications and links to pages for each individual application. The application pages have information on which server the application is located, the file structure and interactions, and any niche maintenance feature that may be useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Structure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
* [[HOL Application Information]]&lt;br /&gt;
* [[DEA Application Information]]&lt;br /&gt;
* [[Database Manager Application Information]]&lt;br /&gt;
* [[vSysLab Application Information]]&lt;br /&gt;
* [[Specimage Application Information]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2155</id>
		<title>XBio:D Applications</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2155"/>
		<updated>2015-08-03T18:02:29Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;XBio:D Applications&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Applications'''&lt;br /&gt;
&lt;br /&gt;
This section provides basic information on the structure of xBio:D web applications and links to pages for each individual application. The application pages have information on which server the application is located, the file structure and interactions, and any niche maintenance feature that may be useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Structure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
* [HOL Application Information]&lt;br /&gt;
* [DEA Application Information]&lt;br /&gt;
* [Database Manager Application Information]&lt;br /&gt;
* [vSysLab Application Information]&lt;br /&gt;
* [Specimage Application Information]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2154</id>
		<title>XBio:D Applications</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Applications&amp;diff=2154"/>
		<updated>2015-08-03T18:02:05Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''xBio:D Applications'''  This section provides basic information on the structure of xBio:D web applications and links to pages for each individual application. The a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Applications'''&lt;br /&gt;
&lt;br /&gt;
This section provides basic information on the structure of xBio:D web applications and links to pages for each individual application. The application pages have information on which server the application is located, the file structure and interactions, and any niche maintenance feature that may be useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Structure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
* [HOL Application Information]&lt;br /&gt;
* [DEA Application Information]&lt;br /&gt;
* [Database Manager Application Information]&lt;br /&gt;
* [vSysLab Application Information]&lt;br /&gt;
* [Specimage Application Information]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_(OSUC)_Private_Portal&amp;diff=2153</id>
		<title>Collection (OSUC) Private Portal</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_(OSUC)_Private_Portal&amp;diff=2153"/>
		<updated>2015-08-03T17:55:24Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Infrastructure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Welcome to the OSUC Private Portal'''&lt;br /&gt;
&lt;br /&gt;
This section of the wiki is private for users associated with the C.A. Triplehorn Insect Collection (OSUC). All subsequent pages, in order to be private, must be protected. Protect new pages by clicking the down arrow next to &amp;quot;View history&amp;quot; at the top, then select &amp;quot;Protect&amp;quot;. When the protection setting page is loaded, choose &amp;quot;OSUC users group&amp;quot; from the &amp;quot;Edit&amp;quot; box to reject all users who are not part of the OSUC users group from editing or reading the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* [[Miscellaneous Publications]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
* [[xBio:D Data Management]]&lt;br /&gt;
* [[xBio:D Applications]]&lt;br /&gt;
* [[xBio:D Database Server Management]]&lt;br /&gt;
* [[Collection Server Management]]&lt;br /&gt;
* [[Hymfiles Server Management]]&lt;br /&gt;
* [[Macroteleia Server Management]]&lt;br /&gt;
* [[Tyrannoscelio Server Management]]&lt;br /&gt;
* [[Initiate ASC Offsite Backup]]&lt;br /&gt;
* [[OBCP Cluster Management]]&lt;br /&gt;
&lt;br /&gt;
== Bioinformatics ==&lt;br /&gt;
* [[Data Validation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Available_Software_on_the_OBCP_Cluster&amp;diff=2152</id>
		<title>Available Software on the OBCP Cluster</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Available_Software_on_the_OBCP_Cluster&amp;diff=2152"/>
		<updated>2015-08-03T15:07:50Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Phylogenetic Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Available Software on the OBCP Cluster'''&lt;br /&gt;
&lt;br /&gt;
This section of the wiki is designed to help a user locate particular software that is present on the OBCP cluster. Send any software requests to [mailto:cora.1@osu.edu Joe Cora].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Standard software packages that are present on most Linux operating systems like Python, Perl, R, etc. are already installed on the OBCP cluster. Some software are designed to be run in parallel by using the message passing interface (MPI) and/or through thread support built into the software. For more information on running programs in parallel, visit the [[Multiple Processor Runs on the OBCP Cluster]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Datasets ==&lt;br /&gt;
=== NCBI - nr Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/nr/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== NCBI - nt Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/nt/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Pfam HMMs ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/Pfam/HHMs/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== UniProt - Swiss-Prot Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/Swiss-Prot/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== UniProt - UniRef90 Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/UniRef90/&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== Phylogenetic Software ==&lt;br /&gt;
=== Agalma ===&lt;br /&gt;
* ''Filename'': agalma&lt;br /&gt;
* ''Version'': 0.5.0&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== BAMM ===&lt;br /&gt;
* ''Filename'': bamm&lt;br /&gt;
* ''Version'': 2.3.1&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Bayesian Serial SimCoal ===&lt;br /&gt;
* ''Filename'': BayeSSC&lt;br /&gt;
* ''Version'': &lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
=== BEAST ===&lt;br /&gt;
* ''Filename'': beast (BEAST v2) / beast1 (BEAST v1)&lt;br /&gt;
* ''Version'': 2.2.1 / 1.8.2&lt;br /&gt;
* ''Parallel'': BEAGLE threading&lt;br /&gt;
* ''Notes'': BEAST v2 is installed in /opt/beast2/; BEAST v1 is installed in /opt/beast1/; see [http://www.beast2.org/wiki/index.php/BEAST_Features this page] for a comparison between the two version&lt;br /&gt;
&lt;br /&gt;
=== BEAUti ===&lt;br /&gt;
* ''Filename'': beauti (BEAST v2) / beauti1 (BEAST v1)&lt;br /&gt;
* ''Version'': 2.2.1 / 1.8.2&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': This program is a BEAST plugin&lt;br /&gt;
&lt;br /&gt;
=== Bioinformatics Brew ===&lt;br /&gt;
* ''Filename'': bib&lt;br /&gt;
* ''Version'': ---&lt;br /&gt;
* ''Parallel'': ---&lt;br /&gt;
* ''Notes'': See information on web - http://bib.bitbucket.org/&lt;br /&gt;
&lt;br /&gt;
=== BUCKy ===&lt;br /&gt;
* ''Filename'': bucky &amp;amp; mbsum&lt;br /&gt;
* ''Version'': 1.4.3&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== B2G4PIPE ===&lt;br /&gt;
* ''Filename'': see notes&lt;br /&gt;
* ''Version'': 2.5.0&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': Must change into the B2G4PIPE directory (/etc/b2g4pipe/), then follow instructions (http://www.blast2go.com/b2glaunch/resources).&lt;br /&gt;
&lt;br /&gt;
=== FastCodeML ===&lt;br /&gt;
* ''Filename'': fast&lt;br /&gt;
* ''Version'': 1.1.0&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== hBayeSSC ===&lt;br /&gt;
* ''Filename'': hBayeSSC.py&lt;br /&gt;
* ''Version'': &lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== jmodeltest2 ===&lt;br /&gt;
* ''Filename'': java -jar /opt/jmodeltest/jModelTest.jar&lt;br /&gt;
* ''Version'': 2.1.7&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': The program must be run with the full path to the executable&lt;br /&gt;
&lt;br /&gt;
=== LASTZ ===&lt;br /&gt;
* ''Filename'': lastz &amp;amp; lastz_D&lt;br /&gt;
* ''Version'': 1.03.54&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MrBayes ===&lt;br /&gt;
* ''Filename'': mb&lt;br /&gt;
* ''Version'': 3.2.5&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': This version of MrBayes now works on Linux kernels using MPI&lt;br /&gt;
&lt;br /&gt;
=== MUSCLE ===&lt;br /&gt;
* ''Filename'': muscle&lt;br /&gt;
* ''Version'':  3.8.31&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== PAML ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'':  4.8a&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': copy configuration files from /opt/paml/&lt;br /&gt;
&lt;br /&gt;
=== PHASE ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'':  2.0&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== ProtTest ===&lt;br /&gt;
* ''Filename'': java -jar /opt/prottest/prottest.jar&lt;br /&gt;
* ''Version'': 3.4&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': The program must be run with the full path to the executable&lt;br /&gt;
&lt;br /&gt;
=== pyRAD ===&lt;br /&gt;
* ''Filename'': pyRAD&lt;br /&gt;
* ''Version'': 3.0&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== RaxML ===&lt;br /&gt;
* ''Filename'': raxml&lt;br /&gt;
* ''Version'': 8.1.16&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== RaxML Light ===&lt;br /&gt;
* ''Filename'': raxmlLight&lt;br /&gt;
* ''Version'': 1.0.8&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== SINA ===&lt;br /&gt;
* ''Filename'': /etc/sina/sina&lt;br /&gt;
* ''Version'': 1.2.11&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': The program must be run with the full path to the executable&lt;br /&gt;
&lt;br /&gt;
=== SNAPP ===&lt;br /&gt;
* ''Filename'': snapp&lt;br /&gt;
* ''Version'': 1.1.1&lt;br /&gt;
* ''Parallel'': BEAGLE threading&lt;br /&gt;
* ''Notes'': This program is a BEAST plugin&lt;br /&gt;
&lt;br /&gt;
=== TNT ===&lt;br /&gt;
* ''Filename'': tnt&lt;br /&gt;
* ''Version'': 1.1&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': Use the command ''cp /etc/tnt/.passwordfile.tnt ~/'' prior to the first run of TNT&lt;br /&gt;
&lt;br /&gt;
=== USEARCH ===&lt;br /&gt;
* ''Filename'': usearch&lt;br /&gt;
* ''Version'': 6.0.307&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== VSEARCH ===&lt;br /&gt;
* ''Filename'': vsearch&lt;br /&gt;
* ''Version'': 1.0.7&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== Genomic/Transcriptomic Software ==&lt;br /&gt;
=== ABySS ===&lt;br /&gt;
* ''Filename'': abyss-pe&lt;br /&gt;
* ''Version'': 1.3.4&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': see documentation on how to run in parallel: http://www.bcgsc.ca/downloads/abyss/doc/#parallelprocessing&lt;br /&gt;
&lt;br /&gt;
=== AlignGraph ===&lt;br /&gt;
* ''Filename'': AlignGraph &amp;amp; Eval-AlignGraph&lt;br /&gt;
* ''Version'': n/a&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== ALLPATHS-LG ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 52188&lt;br /&gt;
* ''Parallel'': threaded&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== AUGUSTUS ===&lt;br /&gt;
* ''Filename'': augustus&lt;br /&gt;
* ''Version'': 3.0.3&lt;br /&gt;
* ''Parallel'': No* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Burrows-Wheeler Aligner (BWA) ===&lt;br /&gt;
* ''Filename'': bwa&lt;br /&gt;
* ''Version'': 0.7.8-r455&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Barrnap ===&lt;br /&gt;
* ''Filename'': barrnap&lt;br /&gt;
* ''Version'': 0.6&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== CASAVA ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.8.2&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== CEGMA ===&lt;br /&gt;
* ''Filename'': cegma&lt;br /&gt;
* ''Version'': 2.5&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Circos ===&lt;br /&gt;
* ''Filename'': circos&lt;br /&gt;
* ''Version'': 0.67-7&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Cufflinks ===&lt;br /&gt;
* ''Filename'': cufflinks&lt;br /&gt;
* ''Version'': 2.2.1&lt;br /&gt;
* ''Parallel'': PThreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== DISCOVAR de novo ===&lt;br /&gt;
* ''Filename'': DiscovarDeNovo&lt;br /&gt;
* ''Version'': 52325&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== FASTX Toolkit ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 0.0.12&lt;br /&gt;
* ''Parallel'': Unknown&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GATK ===&lt;br /&gt;
* ''Filename'': java -jar /usr/local/bin/GenomeAnalysisTK.jar&lt;br /&gt;
* ''Version'': 3.1-1&lt;br /&gt;
* ''Parallel'': Unknown&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GENSCAN ===&lt;br /&gt;
* ''Filename'': genscan&lt;br /&gt;
* ''Version'': ??&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Glimmer ===&lt;br /&gt;
* ''Filename'': glimmer3&lt;br /&gt;
* ''Version'': 3.02&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GMAP ===&lt;br /&gt;
* ''Filename'': gmap &amp;amp; other executables&lt;br /&gt;
* ''Version'': 2014-02-20&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GSNAP ===&lt;br /&gt;
* ''Filename'': gsnap&lt;br /&gt;
* ''Version'': 2014-02-20&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Infernal ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.1.1&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== KmerGenie ===&lt;br /&gt;
* ''Filename'': kmergenie&lt;br /&gt;
* ''Version'': 1.6741&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MAKER ===&lt;br /&gt;
* ''Filename'': maker&lt;br /&gt;
* ''Version'': 2.31.8&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MinCED ===&lt;br /&gt;
* ''Filename'': minced&lt;br /&gt;
* ''Version'': 0.1.6&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MIRA ===&lt;br /&gt;
* ''Filename'': mira&lt;br /&gt;
* ''Version'': 4.0&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== msBayes ===&lt;br /&gt;
* ''Filename'': msbayes.pl&lt;br /&gt;
* ''Version'': 20140305&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Oases ===&lt;br /&gt;
* ''Filename'': oases&lt;br /&gt;
* ''Version'': 0.2&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'': Default parameters were used. Oases (as with Velvet) should be compiled within your home directory with the specific compilation parameters (max k-mer length, # of read categories, etc.) tailored to your reads at hand.&lt;br /&gt;
&lt;br /&gt;
=== PEAR ===&lt;br /&gt;
* ''Filename'': pear&lt;br /&gt;
* ''Version'': 0.9.5&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Picard ===&lt;br /&gt;
* ''Filename'': java -jar /etc/picard-tools/[command].jar&lt;br /&gt;
* ''Version'': 1.111&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': [command] is replaced with the specific picard command you would like to run&lt;br /&gt;
&lt;br /&gt;
=== Prodigal ===&lt;br /&gt;
* ''Filename'': prodigal&lt;br /&gt;
* ''Version'': 2.6.2&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Prokka ===&lt;br /&gt;
* ''Filename'': prokka&lt;br /&gt;
* ''Version'': 1.11&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== PyMsBayes ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 0.2.4&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== QDD ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 3.0 (beta)&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': Must change into the QDD directory (/usr/local/qdd), then follow instructions (http://net.imbe.fr/~emeglecz/qdd_run.html) for running the program from there.&lt;br /&gt;
&lt;br /&gt;
=== RNAmmer ===&lt;br /&gt;
* ''Filename'': rnammer&lt;br /&gt;
* ''Version'': 1.2&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== RSEM ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.2.19&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SAMtools ===&lt;br /&gt;
* ''Filename'': samtools&lt;br /&gt;
* ''Version'': 0.1.19+&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Seqtk ===&lt;br /&gt;
* ''Filename'': seqtk&lt;br /&gt;
* ''Version'': 1.0-r75-dirty&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== SignalP ===&lt;br /&gt;
* ''Filename'': signalp&lt;br /&gt;
* ''Version'': 4.1c&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SISRS ===&lt;br /&gt;
* ''Filename'': sisrs&lt;br /&gt;
* ''Version'': 1.6&lt;br /&gt;
* ''Parallel'': yes&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SOAPaligner ===&lt;br /&gt;
* ''Filename'': soap and 2bwt-builder&lt;br /&gt;
* ''Version'': 2.21&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SOAPdenovo ===&lt;br /&gt;
* ''Filename'': SOAPdenovo-127mer and SOAPdenovo-63mer&lt;br /&gt;
* ''Version'': 2.04&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SPAdes ===&lt;br /&gt;
* ''Filename'': spades.py&lt;br /&gt;
* ''Version'': 3.5.0&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Structure ===&lt;br /&gt;
* ''Filename'': structure&lt;br /&gt;
* ''Version'': 2.3.4&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': uses this command 'structure -m /usr/local/bin/mainparams -e /usr/local/bin/extraparams' to run with default parameter files&lt;br /&gt;
&lt;br /&gt;
=== tbl2asn ===&lt;br /&gt;
* ''Filename'': tbl2asn&lt;br /&gt;
* ''Version'': 11-12-2014&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== TMHMM ===&lt;br /&gt;
* ''Filename'': tmhmm&lt;br /&gt;
* ''Version'': 2.0c&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== TopHat ===&lt;br /&gt;
* ''Filename'': tophat&lt;br /&gt;
* ''Version'': 2.0.13&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Trimmomatic ===&lt;br /&gt;
* ''Filename'': java -jar /usr/local/bin/trimmomatic.jar&lt;br /&gt;
* ''Version'': 0.32&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Trinotate ===&lt;br /&gt;
* ''Filename'': Trinotate&lt;br /&gt;
* ''Version'': r20131110&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'': Trinotate directory is located at '/etc/trinotate' if needed. The NCBI sequence databases are located in '/data/shared/seq_dbs/'&lt;br /&gt;
&lt;br /&gt;
=== Trinity ===&lt;br /&gt;
* ''Filename'': /etc/trinity/Trinity&lt;br /&gt;
* ''Version'': 2.0.6&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': Use the argument &amp;quot;--bypass_java_version_check&amp;quot; to ignore checking for a specific, earlier Java version&lt;br /&gt;
&lt;br /&gt;
=== Velvet ===&lt;br /&gt;
* ''Filename'': velveth &amp;amp; velvetg&lt;br /&gt;
* ''Version'': 1.2.09&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'': Default parameters were used with the exception of enabling OpenMP. Velvet should be compiled within your home directory with the specific compilation parameters (max k-mer length, # of read categories, etc.) tailored to your reads at hand.&lt;br /&gt;
&lt;br /&gt;
=== VCFtools ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 0.1.12a&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== VelvetOptimiser ===&lt;br /&gt;
* ''Filename'': VelvetOptimiser.pl&lt;br /&gt;
* ''Version'': 2.2.5&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== vtBuilder ===&lt;br /&gt;
* ''Filename'': vt-builder.jar&lt;br /&gt;
* ''Version'': unknown (preview)&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': run from command line as '''java -jar -Xmx97152M /usr/local/lib/vt-builder.jar -a n -d ./output.txt -e ./log.txt -f 32 -g 150 -h 250 -j 96'''&lt;br /&gt;
&lt;br /&gt;
== Population Genetic/Genomic Software ==&lt;br /&gt;
=== BP&amp;amp;P ===&lt;br /&gt;
* ''Filename'': bpp&lt;br /&gt;
* ''Version'': 2.1b&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== ∂a∂i ===&lt;br /&gt;
* ''Filename'': python package&lt;br /&gt;
* ''Version'': 1.6.3&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== IMa2 ===&lt;br /&gt;
* ''Filename'': IMa2&lt;br /&gt;
* ''Version'': 8.27.12&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': version is the date of release (August 27, 2012)&lt;br /&gt;
&lt;br /&gt;
=== Migrate-N ===&lt;br /&gt;
* ''Filename'': migrate-n&lt;br /&gt;
* ''Version'': 3.6.11&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Migrate-N (beta) ===&lt;br /&gt;
* ''Filename'': migrate-n-beta&lt;br /&gt;
* ''Version'': 3.4.4&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': This is a beta version&lt;br /&gt;
&lt;br /&gt;
=== ms ===&lt;br /&gt;
* ''Filename'': ms&lt;br /&gt;
* ''Version'': 3.13.2014&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== RTD ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 06-10-2013&lt;br /&gt;
* ''Parallel'': GNU parallel&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Stacks ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.24&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== Ecological Modelling Software ==&lt;br /&gt;
&lt;br /&gt;
=== Maxent ===&lt;br /&gt;
* ''Filename'': java -jar /usr/local/lib/maxent.jar&lt;br /&gt;
* ''Version'': 3.3.3k&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Mothur ===&lt;br /&gt;
* ''Filename'': mothur&lt;br /&gt;
* ''Version'': 1.33&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== R Packages ==&lt;br /&gt;
=== akima ===&lt;br /&gt;
* ''Version'': 0.5-11&lt;br /&gt;
&lt;br /&gt;
=== ape ===&lt;br /&gt;
* ''Version'': 3.1-1&lt;br /&gt;
&lt;br /&gt;
=== bGMYC ===&lt;br /&gt;
* ''Version'': 1.0.2&lt;br /&gt;
&lt;br /&gt;
=== genalg ===&lt;br /&gt;
* ''Version'': 0.1.1&lt;br /&gt;
&lt;br /&gt;
=== rlecuyer ===&lt;br /&gt;
* ''Version'': 0.3-3&lt;br /&gt;
&lt;br /&gt;
=== VGAM ===&lt;br /&gt;
* ''Version'': 0.9-3&lt;br /&gt;
&lt;br /&gt;
== Python Packages ==&lt;br /&gt;
=== ACOR ===&lt;br /&gt;
* ''Version'': 1.1.1&lt;br /&gt;
&lt;br /&gt;
=== BCBio ===&lt;br /&gt;
* ''Version'': 0.6.1&lt;br /&gt;
&lt;br /&gt;
=== BioPython ===&lt;br /&gt;
* ''Version'': 1.6.3&lt;br /&gt;
&lt;br /&gt;
=== Geneland ===&lt;br /&gt;
* ''Version'': 4.0.5&lt;br /&gt;
&lt;br /&gt;
=== NumPy ===&lt;br /&gt;
* ''Version'': 1.8.2&lt;br /&gt;
&lt;br /&gt;
=== PypeR ===&lt;br /&gt;
* ''Version'': 1.1.2&lt;br /&gt;
&lt;br /&gt;
=== OJ_Break ===&lt;br /&gt;
* ''Version'': 0.1&lt;br /&gt;
&lt;br /&gt;
=== QIIME ===&lt;br /&gt;
* ''Version'': 1.8.0&lt;br /&gt;
&lt;br /&gt;
=== scatR ===&lt;br /&gt;
* ''Version'': 0.1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OBCP]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Available_Software_on_the_OBCP_Cluster&amp;diff=2149</id>
		<title>Available Software on the OBCP Cluster</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Available_Software_on_the_OBCP_Cluster&amp;diff=2149"/>
		<updated>2015-07-30T14:14:17Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Phylogenetic Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Available Software on the OBCP Cluster'''&lt;br /&gt;
&lt;br /&gt;
This section of the wiki is designed to help a user locate particular software that is present on the OBCP cluster. Send any software requests to [mailto:cora.1@osu.edu Joe Cora].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Standard software packages that are present on most Linux operating systems like Python, Perl, R, etc. are already installed on the OBCP cluster. Some software are designed to be run in parallel by using the message passing interface (MPI) and/or through thread support built into the software. For more information on running programs in parallel, visit the [[Multiple Processor Runs on the OBCP Cluster]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Datasets ==&lt;br /&gt;
=== NCBI - nr Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/nr/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== NCBI - nt Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/nt/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Pfam HMMs ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/Pfam/HHMs/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== UniProt - Swiss-Prot Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/Swiss-Prot/&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== UniProt - UniRef90 Database ===&lt;br /&gt;
* ''Path'': /data/shared/seq_dbs/UniRef90/&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== Phylogenetic Software ==&lt;br /&gt;
=== Agalma ===&lt;br /&gt;
* ''Filename'': agalma&lt;br /&gt;
* ''Version'': 0.5.0&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Bayesian Serial SimCoal ===&lt;br /&gt;
* ''Filename'': BayeSSC&lt;br /&gt;
* ''Version'': &lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== BEAST ===&lt;br /&gt;
* ''Filename'': beast (BEAST v2) / beast1 (BEAST v1)&lt;br /&gt;
* ''Version'': 2.2.1 / 1.8.2&lt;br /&gt;
* ''Parallel'': BEAGLE threading&lt;br /&gt;
* ''Notes'': BEAST v2 is installed in /opt/beast2/; BEAST v1 is installed in /opt/beast1/; see [http://www.beast2.org/wiki/index.php/BEAST_Features this page] for a comparison between the two version&lt;br /&gt;
&lt;br /&gt;
=== BEAUti ===&lt;br /&gt;
* ''Filename'': beauti (BEAST v2) / beauti1 (BEAST v1)&lt;br /&gt;
* ''Version'': 2.2.1 / 1.8.2&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': This program is a BEAST plugin&lt;br /&gt;
&lt;br /&gt;
=== Bioinformatics Brew ===&lt;br /&gt;
* ''Filename'': bib&lt;br /&gt;
* ''Version'': ---&lt;br /&gt;
* ''Parallel'': ---&lt;br /&gt;
* ''Notes'': See information on web - http://bib.bitbucket.org/&lt;br /&gt;
&lt;br /&gt;
=== BUCKy ===&lt;br /&gt;
* ''Filename'': bucky &amp;amp; mbsum&lt;br /&gt;
* ''Version'': 1.4.3&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== B2G4PIPE ===&lt;br /&gt;
* ''Filename'': see notes&lt;br /&gt;
* ''Version'': 2.5.0&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': Must change into the B2G4PIPE directory (/etc/b2g4pipe/), then follow instructions (http://www.blast2go.com/b2glaunch/resources).&lt;br /&gt;
&lt;br /&gt;
=== FastCodeML ===&lt;br /&gt;
* ''Filename'': fast&lt;br /&gt;
* ''Version'': 1.1.0&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== hBayeSSC ===&lt;br /&gt;
* ''Filename'': hBayeSSC.py&lt;br /&gt;
* ''Version'': &lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== jmodeltest2 ===&lt;br /&gt;
* ''Filename'': java -jar /opt/jmodeltest/jModelTest.jar&lt;br /&gt;
* ''Version'': 2.1.7&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': The program must be run with the full path to the executable&lt;br /&gt;
&lt;br /&gt;
=== LASTZ ===&lt;br /&gt;
* ''Filename'': lastz &amp;amp; lastz_D&lt;br /&gt;
* ''Version'': 1.03.54&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MrBayes ===&lt;br /&gt;
* ''Filename'': mb&lt;br /&gt;
* ''Version'': 3.2.5&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': This version of MrBayes now works on Linux kernels using MPI&lt;br /&gt;
&lt;br /&gt;
=== MUSCLE ===&lt;br /&gt;
* ''Filename'': muscle&lt;br /&gt;
* ''Version'':  3.8.31&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== PAML ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'':  4.8a&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': copy configuration files from /opt/paml/&lt;br /&gt;
&lt;br /&gt;
=== PHASE ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'':  2.0&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== ProtTest ===&lt;br /&gt;
* ''Filename'': java -jar /opt/prottest/prottest.jar&lt;br /&gt;
* ''Version'': 3.4&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': The program must be run with the full path to the executable&lt;br /&gt;
&lt;br /&gt;
=== pyRAD ===&lt;br /&gt;
* ''Filename'': pyRAD&lt;br /&gt;
* ''Version'': 3.0&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== RaxML ===&lt;br /&gt;
* ''Filename'': raxml&lt;br /&gt;
* ''Version'': 8.1.16&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== RaxML Light ===&lt;br /&gt;
* ''Filename'': raxmlLight&lt;br /&gt;
* ''Version'': 1.0.8&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== SINA ===&lt;br /&gt;
* ''Filename'': /etc/sina/sina&lt;br /&gt;
* ''Version'': 1.2.11&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': The program must be run with the full path to the executable&lt;br /&gt;
&lt;br /&gt;
=== SNAPP ===&lt;br /&gt;
* ''Filename'': snapp&lt;br /&gt;
* ''Version'': 1.1.1&lt;br /&gt;
* ''Parallel'': BEAGLE threading&lt;br /&gt;
* ''Notes'': This program is a BEAST plugin&lt;br /&gt;
&lt;br /&gt;
=== TNT ===&lt;br /&gt;
* ''Filename'': tnt&lt;br /&gt;
* ''Version'': 1.1&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': Use the command ''cp /etc/tnt/.passwordfile.tnt ~/'' prior to the first run of TNT&lt;br /&gt;
&lt;br /&gt;
=== USEARCH ===&lt;br /&gt;
* ''Filename'': usearch&lt;br /&gt;
* ''Version'': 6.0.307&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== VSEARCH ===&lt;br /&gt;
* ''Filename'': vsearch&lt;br /&gt;
* ''Version'': 1.0.7&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== Genomic/Transcriptomic Software ==&lt;br /&gt;
=== ABySS ===&lt;br /&gt;
* ''Filename'': abyss-pe&lt;br /&gt;
* ''Version'': 1.3.4&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': see documentation on how to run in parallel: http://www.bcgsc.ca/downloads/abyss/doc/#parallelprocessing&lt;br /&gt;
&lt;br /&gt;
=== AlignGraph ===&lt;br /&gt;
* ''Filename'': AlignGraph &amp;amp; Eval-AlignGraph&lt;br /&gt;
* ''Version'': n/a&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== ALLPATHS-LG ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 52188&lt;br /&gt;
* ''Parallel'': threaded&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== AUGUSTUS ===&lt;br /&gt;
* ''Filename'': augustus&lt;br /&gt;
* ''Version'': 3.0.3&lt;br /&gt;
* ''Parallel'': No* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Burrows-Wheeler Aligner (BWA) ===&lt;br /&gt;
* ''Filename'': bwa&lt;br /&gt;
* ''Version'': 0.7.8-r455&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Barrnap ===&lt;br /&gt;
* ''Filename'': barrnap&lt;br /&gt;
* ''Version'': 0.6&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== CASAVA ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.8.2&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== CEGMA ===&lt;br /&gt;
* ''Filename'': cegma&lt;br /&gt;
* ''Version'': 2.5&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Circos ===&lt;br /&gt;
* ''Filename'': circos&lt;br /&gt;
* ''Version'': 0.67-7&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Cufflinks ===&lt;br /&gt;
* ''Filename'': cufflinks&lt;br /&gt;
* ''Version'': 2.2.1&lt;br /&gt;
* ''Parallel'': PThreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== DISCOVAR de novo ===&lt;br /&gt;
* ''Filename'': DiscovarDeNovo&lt;br /&gt;
* ''Version'': 52325&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== FASTX Toolkit ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 0.0.12&lt;br /&gt;
* ''Parallel'': Unknown&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GATK ===&lt;br /&gt;
* ''Filename'': java -jar /usr/local/bin/GenomeAnalysisTK.jar&lt;br /&gt;
* ''Version'': 3.1-1&lt;br /&gt;
* ''Parallel'': Unknown&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GENSCAN ===&lt;br /&gt;
* ''Filename'': genscan&lt;br /&gt;
* ''Version'': ??&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Glimmer ===&lt;br /&gt;
* ''Filename'': glimmer3&lt;br /&gt;
* ''Version'': 3.02&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GMAP ===&lt;br /&gt;
* ''Filename'': gmap &amp;amp; other executables&lt;br /&gt;
* ''Version'': 2014-02-20&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== GSNAP ===&lt;br /&gt;
* ''Filename'': gsnap&lt;br /&gt;
* ''Version'': 2014-02-20&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Infernal ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.1.1&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== KmerGenie ===&lt;br /&gt;
* ''Filename'': kmergenie&lt;br /&gt;
* ''Version'': 1.6741&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MAKER ===&lt;br /&gt;
* ''Filename'': maker&lt;br /&gt;
* ''Version'': 2.31.8&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MinCED ===&lt;br /&gt;
* ''Filename'': minced&lt;br /&gt;
* ''Version'': 0.1.6&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== MIRA ===&lt;br /&gt;
* ''Filename'': mira&lt;br /&gt;
* ''Version'': 4.0&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== msBayes ===&lt;br /&gt;
* ''Filename'': msbayes.pl&lt;br /&gt;
* ''Version'': 20140305&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Oases ===&lt;br /&gt;
* ''Filename'': oases&lt;br /&gt;
* ''Version'': 0.2&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'': Default parameters were used. Oases (as with Velvet) should be compiled within your home directory with the specific compilation parameters (max k-mer length, # of read categories, etc.) tailored to your reads at hand.&lt;br /&gt;
&lt;br /&gt;
=== PEAR ===&lt;br /&gt;
* ''Filename'': pear&lt;br /&gt;
* ''Version'': 0.9.5&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Picard ===&lt;br /&gt;
* ''Filename'': java -jar /etc/picard-tools/[command].jar&lt;br /&gt;
* ''Version'': 1.111&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': [command] is replaced with the specific picard command you would like to run&lt;br /&gt;
&lt;br /&gt;
=== Prodigal ===&lt;br /&gt;
* ''Filename'': prodigal&lt;br /&gt;
* ''Version'': 2.6.2&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Prokka ===&lt;br /&gt;
* ''Filename'': prokka&lt;br /&gt;
* ''Version'': 1.11&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== PyMsBayes ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 0.2.4&lt;br /&gt;
* ''Parallel'': Yes&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== QDD ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 3.0 (beta)&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'': Must change into the QDD directory (/usr/local/qdd), then follow instructions (http://net.imbe.fr/~emeglecz/qdd_run.html) for running the program from there.&lt;br /&gt;
&lt;br /&gt;
=== RNAmmer ===&lt;br /&gt;
* ''Filename'': rnammer&lt;br /&gt;
* ''Version'': 1.2&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== RSEM ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.2.19&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SAMtools ===&lt;br /&gt;
* ''Filename'': samtools&lt;br /&gt;
* ''Version'': 0.1.19+&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Seqtk ===&lt;br /&gt;
* ''Filename'': seqtk&lt;br /&gt;
* ''Version'': 1.0-r75-dirty&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== SignalP ===&lt;br /&gt;
* ''Filename'': signalp&lt;br /&gt;
* ''Version'': 4.1c&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SISRS ===&lt;br /&gt;
* ''Filename'': sisrs&lt;br /&gt;
* ''Version'': 1.6&lt;br /&gt;
* ''Parallel'': yes&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SOAPaligner ===&lt;br /&gt;
* ''Filename'': soap and 2bwt-builder&lt;br /&gt;
* ''Version'': 2.21&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SOAPdenovo ===&lt;br /&gt;
* ''Filename'': SOAPdenovo-127mer and SOAPdenovo-63mer&lt;br /&gt;
* ''Version'': 2.04&lt;br /&gt;
* ''Parallel'': Pthreads threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== SPAdes ===&lt;br /&gt;
* ''Filename'': spades.py&lt;br /&gt;
* ''Version'': 3.5.0&lt;br /&gt;
* ''Parallel'': threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Structure ===&lt;br /&gt;
* ''Filename'': structure&lt;br /&gt;
* ''Version'': 2.3.4&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': uses this command 'structure -m /usr/local/bin/mainparams -e /usr/local/bin/extraparams' to run with default parameter files&lt;br /&gt;
&lt;br /&gt;
=== tbl2asn ===&lt;br /&gt;
* ''Filename'': tbl2asn&lt;br /&gt;
* ''Version'': 11-12-2014&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== TMHMM ===&lt;br /&gt;
* ''Filename'': tmhmm&lt;br /&gt;
* ''Version'': 2.0c&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== TopHat ===&lt;br /&gt;
* ''Filename'': tophat&lt;br /&gt;
* ''Version'': 2.0.13&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Trimmomatic ===&lt;br /&gt;
* ''Filename'': java -jar /usr/local/bin/trimmomatic.jar&lt;br /&gt;
* ''Version'': 0.32&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Trinotate ===&lt;br /&gt;
* ''Filename'': Trinotate&lt;br /&gt;
* ''Version'': r20131110&lt;br /&gt;
* ''Parallel'': unknown&lt;br /&gt;
* ''Notes'': Trinotate directory is located at '/etc/trinotate' if needed. The NCBI sequence databases are located in '/data/shared/seq_dbs/'&lt;br /&gt;
&lt;br /&gt;
=== Trinity ===&lt;br /&gt;
* ''Filename'': /etc/trinity/Trinity&lt;br /&gt;
* ''Version'': 2.0.6&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': Use the argument &amp;quot;--bypass_java_version_check&amp;quot; to ignore checking for a specific, earlier Java version&lt;br /&gt;
&lt;br /&gt;
=== Velvet ===&lt;br /&gt;
* ''Filename'': velveth &amp;amp; velvetg&lt;br /&gt;
* ''Version'': 1.2.09&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'': Default parameters were used with the exception of enabling OpenMP. Velvet should be compiled within your home directory with the specific compilation parameters (max k-mer length, # of read categories, etc.) tailored to your reads at hand.&lt;br /&gt;
&lt;br /&gt;
=== VCFtools ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 0.1.12a&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== VelvetOptimiser ===&lt;br /&gt;
* ''Filename'': VelvetOptimiser.pl&lt;br /&gt;
* ''Version'': 2.2.5&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== vtBuilder ===&lt;br /&gt;
* ''Filename'': vt-builder.jar&lt;br /&gt;
* ''Version'': unknown (preview)&lt;br /&gt;
* ''Parallel'': Threading&lt;br /&gt;
* ''Notes'': run from command line as '''java -jar -Xmx97152M /usr/local/lib/vt-builder.jar -a n -d ./output.txt -e ./log.txt -f 32 -g 150 -h 250 -j 96'''&lt;br /&gt;
&lt;br /&gt;
== Population Genetic/Genomic Software ==&lt;br /&gt;
=== BP&amp;amp;P ===&lt;br /&gt;
* ''Filename'': bpp&lt;br /&gt;
* ''Version'': 2.1b&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== ∂a∂i ===&lt;br /&gt;
* ''Filename'': python package&lt;br /&gt;
* ''Version'': 1.6.3&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== IMa2 ===&lt;br /&gt;
* ''Filename'': IMa2&lt;br /&gt;
* ''Version'': 8.27.12&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': version is the date of release (August 27, 2012)&lt;br /&gt;
&lt;br /&gt;
=== Migrate-N ===&lt;br /&gt;
* ''Filename'': migrate-n&lt;br /&gt;
* ''Version'': 3.6.11&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Migrate-N (beta) ===&lt;br /&gt;
* ''Filename'': migrate-n-beta&lt;br /&gt;
* ''Version'': 3.4.4&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'': This is a beta version&lt;br /&gt;
&lt;br /&gt;
=== ms ===&lt;br /&gt;
* ''Filename'': ms&lt;br /&gt;
* ''Version'': 3.13.2014&lt;br /&gt;
* ''Parallel'': No&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== RTD ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 06-10-2013&lt;br /&gt;
* ''Parallel'': GNU parallel&lt;br /&gt;
* ''Notes'': &lt;br /&gt;
&lt;br /&gt;
=== Stacks ===&lt;br /&gt;
* ''Filename'': multiple executables&lt;br /&gt;
* ''Version'': 1.24&lt;br /&gt;
* ''Parallel'': OpenMP threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== Ecological Modelling Software ==&lt;br /&gt;
&lt;br /&gt;
=== Maxent ===&lt;br /&gt;
* ''Filename'': java -jar /usr/local/lib/maxent.jar&lt;br /&gt;
* ''Version'': 3.3.3k&lt;br /&gt;
* ''Parallel'': Java threading&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
=== Mothur ===&lt;br /&gt;
* ''Filename'': mothur&lt;br /&gt;
* ''Version'': 1.33&lt;br /&gt;
* ''Parallel'': MPI-enabled&lt;br /&gt;
* ''Notes'':&lt;br /&gt;
&lt;br /&gt;
== R Packages ==&lt;br /&gt;
=== akima ===&lt;br /&gt;
* ''Version'': 0.5-11&lt;br /&gt;
&lt;br /&gt;
=== ape ===&lt;br /&gt;
* ''Version'': 3.1-1&lt;br /&gt;
&lt;br /&gt;
=== bGMYC ===&lt;br /&gt;
* ''Version'': 1.0.2&lt;br /&gt;
&lt;br /&gt;
=== genalg ===&lt;br /&gt;
* ''Version'': 0.1.1&lt;br /&gt;
&lt;br /&gt;
=== rlecuyer ===&lt;br /&gt;
* ''Version'': 0.3-3&lt;br /&gt;
&lt;br /&gt;
=== VGAM ===&lt;br /&gt;
* ''Version'': 0.9-3&lt;br /&gt;
&lt;br /&gt;
== Python Packages ==&lt;br /&gt;
=== ACOR ===&lt;br /&gt;
* ''Version'': 1.1.1&lt;br /&gt;
&lt;br /&gt;
=== BCBio ===&lt;br /&gt;
* ''Version'': 0.6.1&lt;br /&gt;
&lt;br /&gt;
=== BioPython ===&lt;br /&gt;
* ''Version'': 1.6.3&lt;br /&gt;
&lt;br /&gt;
=== Geneland ===&lt;br /&gt;
* ''Version'': 4.0.5&lt;br /&gt;
&lt;br /&gt;
=== NumPy ===&lt;br /&gt;
* ''Version'': 1.8.2&lt;br /&gt;
&lt;br /&gt;
=== PypeR ===&lt;br /&gt;
* ''Version'': 1.1.2&lt;br /&gt;
&lt;br /&gt;
=== OJ_Break ===&lt;br /&gt;
* ''Version'': 0.1&lt;br /&gt;
&lt;br /&gt;
=== QIIME ===&lt;br /&gt;
* ''Version'': 1.8.0&lt;br /&gt;
&lt;br /&gt;
=== scatR ===&lt;br /&gt;
* ''Version'': 0.1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OBCP]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Data_Management&amp;diff=2148</id>
		<title>XBio:D Data Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Data_Management&amp;diff=2148"/>
		<updated>2015-07-27T21:44:11Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Data Management'''&lt;br /&gt;
&lt;br /&gt;
This section provides instructions on performing common data management tasks on the xBio:D database that are not privy to general users. These tasks are not available through web applications and must either be performed by running a script or a database procedure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Change Occurrence (Specimen) Record CUID ==&lt;br /&gt;
In the Oracle SQL Developer, turn DBMS_OUTPUT on, then run the procedure &amp;lt;code&amp;gt;EXEC updateSpmID(old_cuid, new_cuid);&amp;lt;/code&amp;gt;. The procedure will only produce output when a problem occurred.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Occurrence (Specimen) Record ==&lt;br /&gt;
In the Oracle SQL Developer, turn DBMS_OUTPUT on, then run the procedure &amp;lt;code&amp;gt;EXEC removeSpm(cuid);&amp;lt;/code&amp;gt;. The procedure will only produce output when a problem occurred.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merged/Remove Locality Name ==&lt;br /&gt;
In the Oracle SQL Developer, turn DBMS_OUTPUT on, then run the procedure &amp;lt;code&amp;gt;EXEC change_locality(obsolete_loc_name, valid_loc_name);&amp;lt;/code&amp;gt;. The procedure removes the obsolete locality and places all of the occurrence records from the obsolete locality into the valid locality name. There is also an additional, optional parameter ''coll_date'', which accepts the format DD-MON-YYYY, that will change the functioning of this procedure to change only those occurrence records that were collected on that particular date. If all of the occurrences were collected on that day, the locality is removed. The procedure will only produce output when a problem occurred.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Add Collection Records or Taxon Checklist as a Project to the xBio:D IPT ==&lt;br /&gt;
# Log into the database server (''osuc.biosci.ohio-state.edu'') via SSH and open DwC-A collection export script, ''export_dwca_collections.py''. This script is set to run every Sunday at 8PM.&lt;br /&gt;
## &amp;lt;code&amp;gt;ssh [username]@osuc.biosci.ohio-state.edu&amp;lt;/code&amp;gt;&lt;br /&gt;
## &amp;lt;code&amp;gt;sudo nano /var/www/cgi-bin/export_dwca_collections.py&amp;lt;/code&amp;gt;&lt;br /&gt;
# Go to the ''handleDwCAExport'' function and add the taxon or collection you would like to export.&lt;br /&gt;
## The ''exportDwCA'' function of the OJ_Exporter package takes the collection ''Storage_Regime_ID'' as the identifier.&lt;br /&gt;
## The ''exportTaxonDwCA'' function of the OJ_Exporter package takes the taxon ''tnuid'' as the identifier.&lt;br /&gt;
# Execute the ''export_dwca_collections.py'' script immediately or wait until after the weekly export execution&lt;br /&gt;
# Download the DwC-A file created for the new collection or checklist&lt;br /&gt;
## Collection records example: ''http://osuc.biosci.ohio-state.edu/data_exports/dwca_1.zip''&lt;br /&gt;
## Taxon checklist example: ''http://osuc.biosci.ohio-state.edu/data_exports/dwca_tax_195000.zip''&lt;br /&gt;
# Create project in xBio:D IPT for the data you will be disseminating.&lt;br /&gt;
## Log into IPT and go to ''Manage Resources''&lt;br /&gt;
## Scroll to the bottom to ''Create New Resource'', specify a short name and resource type, then upload the previously exported file and create resource&lt;br /&gt;
## Fill in the metadata section of the resource with the appropriate values for provider, owner, etc.&lt;br /&gt;
# Log into the hymfiles server (''osuc.biosci.ohio-state.edu'') via Remote Desktop and open IPT DwC-A import script, ''populate_ipt.py''. The Python script is located in ''C:\backup_scripts''.&lt;br /&gt;
# Go to the ''handlePopulateIPT'' function and add the taxon or collection you would like to export.&lt;br /&gt;
## The numeric identifiers are the same as defined in the ''export'' step above&lt;br /&gt;
## The second parameter for the populate script is the resource short name specified above.&lt;br /&gt;
# Register and publish the new project. The resource will now be available on GBIF and can be shared with other data aggregators like iDigBio, VertNet, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Aggregation Update ==&lt;br /&gt;
Many DB queries use tables that are aggregated from many separate tables to speed up processing. These aggregation tasks are performed automatically every Saturday under the DB job named ''aggregation_update''. These tasks include the following:&lt;br /&gt;
* '''''processDescriberIDs''''' - Goes through each taxonomic concept that does not already have a describer specified within the ''Protonym'' table and attempts to infer from an original description or replacement name literature annotation the author of the taxon. If a match is found, then the individual describer or describer party is added to the ''Protonym'' table.&lt;br /&gt;
* '''''update_people_stats''''' - Builds the ''AGGR_Person_Stats'' table that contains the # of occurrences collected, # of papers published, # of determinations made, # of distinct events collected, and the total # of contributions for each person.&lt;br /&gt;
* '''''update_genera_stats''''' - Builds the ''AGGR_Genus_Stats'' table that contains the # of occurrences determined, # of papers published, # of images taken, # of collections deposited, and distinct events collected for each tnuid.&lt;br /&gt;
* '''''update_place_children''''' - Builds the ''AGGR_Place_Children'' table that contains a place along with each subordinate place at any lower position within the geopolitical hierarchy.&lt;br /&gt;
* '''''update_taxon_children''''' - Builds the ''AGGR_Taxon_Children'' table that contains a tnuid along with each subordinate tnuid at any lower position within the taxonomic hierarchy. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_fossil_taxa''''' - Builds the ''AGGR_Fossil_Taxa'' table that contains a tcid for each taxon concept that is a fossil. Fossil status is only applied to species-group taxa, so this procedure also added taxa in which all of its subordinate taxa are fossils.&lt;br /&gt;
* '''''update_recordings''''' - Builds the ''AGGR_Taxon_Recordings'' table that contains a tnuid and recording info id for any recording that is contained within the taxon.&lt;br /&gt;
* '''''update_images''''' - Builds the ''AGGR_Taxon_Images'' table that contains a tnuid and image id for any specimen or taxon image that is contained within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_habitats''''' - Builds the ''AGGR_Habitat'' table that contains a tnuid and habitat for any occurrence that is contained within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_taxon_contributors''''' - Builds the ''AGGR_Taxon_Contribs'' table that contains a tnuid, contributor, and contribution flags for every contribution from the contributor within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_inst_tcids''''' - Builds the ''AGGR_Inst_Tcids'' table that contains the tcids for every collection where an occurrence is present. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
* '''''update_associations''''' - Builds the ''AGGR_Taxon_Assocs'' table that contains a tnuid and associated tnuid for every taxon that is contained within the taxon. Species-group taxa are excluded as parent taxa within this table.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=OBCP_Cluster_Management&amp;diff=2147</id>
		<title>OBCP Cluster Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=OBCP_Cluster_Management&amp;diff=2147"/>
		<updated>2015-07-27T15:02:43Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''OBCP Cluster Management'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Add New User ==&lt;br /&gt;
&lt;br /&gt;
# Go to ''johnsonlab'' folder.&lt;br /&gt;
## &amp;lt;code&amp;gt;$ cd /data/johnsonlab/&amp;lt;/code&amp;gt;&lt;br /&gt;
# Modify ''addUser.sh'' by changing ''NEW_USER'' variable at top to the new username. Exit and save when finished.&lt;br /&gt;
## &amp;lt;code&amp;gt;$ sudo nano addUser.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
## &amp;lt;code&amp;gt;... NEW_USER=[username] ...&amp;lt;/code&amp;gt;&lt;br /&gt;
# Execute ''addUser.sh'' and enter password for new user. Enter full name of user when prompted. The rest of the options before the disk quota can be ignored.&lt;br /&gt;
## &amp;lt;code&amp;gt;$ sudo ./addUser.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
# When the disk quotas configuration is displayed, change the soft limits for the number of blocks and inodes allowed by the user on the OS filesystem to 1GB.&lt;br /&gt;
## Move the cursor to the first ''0'', which is the third column, and change the value to ''1000000''.&lt;br /&gt;
## Move the cursor to the next to the last ''0'', which is the sixth column, and change the value to ''1000000''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Initiate OBCP Cluster iSCSI Connection ==&lt;br /&gt;
&lt;br /&gt;
Command: &amp;lt;code&amp;gt;sudo iscsiadm -m node -T iqn.1991-05.com.microsoft:d2l7t6v1-obcp-nas-target -p 192.168.5.2:3260 --login&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mount iSCSI Volumes ==&lt;br /&gt;
&lt;br /&gt;
Command: &amp;lt;code&amp;gt;sudo mount /dev/sdb1 /data&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Command: &amp;lt;code&amp;gt;sudo mount /dev/sdc1 /data2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Add Capacity to OBCP Cluster NAS ==&lt;br /&gt;
&lt;br /&gt;
# Insert hard disk with caddy into next available slot within NAS&lt;br /&gt;
# Within the NAS Windows OS, open Dell Open Manage Server Administrator&lt;br /&gt;
## Initialize the new physical disk&lt;br /&gt;
## Reconfigure the virtual disk (RAID-6) to include the new disk&lt;br /&gt;
## Re-initialize the virtual disk to prepare for added capacity&lt;br /&gt;
# Within the NAS Windows OS, open Windows Computer Management&lt;br /&gt;
## In Disk Management, extend the virtual disk volume to use the added capacity&lt;br /&gt;
## In iSCSI Software Management, go to Device and extended the virtual disk volume to use the added capacity&lt;br /&gt;
# Within the cluster Ubuntu OS, prepare to extend the iSCSI partition and filesystem&lt;br /&gt;
## Kill any processes accessing the iSCSI interface&lt;br /&gt;
## Logout from the iSCSI connection and unmount the iSCSI filesystem (&amp;lt;code&amp;gt;umount /dev/sdb1&amp;lt;/code&amp;gt; - may require a restart)&lt;br /&gt;
## Within the Ubuntu GUI, open GParted and extend the partition stored on the NAS&lt;br /&gt;
## Log back into the iSCSI connection and remount the iSCSI filesystem (&amp;lt;code&amp;gt;mount -a&amp;lt;/code&amp;gt;)&lt;br /&gt;
# The cluster is now ready to use the additional storage capacity&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Hymfiles_Server_Management&amp;diff=2145</id>
		<title>Hymfiles Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Hymfiles_Server_Management&amp;diff=2145"/>
		<updated>2015-07-22T19:58:56Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;Hymfiles Server Management&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Hymfiles Server Management (hymfiles.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''C:\inetpub\wwwroot''&lt;br /&gt;
* xBio:D IPT Directory: ''C:\ipt_data''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* PDF storage - http://hymfiles.biosci.ohio-state.edu/pdfs-osuc/&lt;br /&gt;
* PDF storage (Antbase) - http://hymfiles.biosci.ohio-state.edu/pdfs-antbase/&lt;br /&gt;
* DB Manager taxon images - http://hymfiles.biosci.ohio-state.edu/taxon_images&lt;br /&gt;
* Bonobo Git Server - http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/&lt;br /&gt;
* Redmine Bug Tracker/Project Manager - http://hymfiles.biosci.ohio-state.edu/redmine/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2144</id>
		<title>XBio:D Database Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2144"/>
		<updated>2015-07-22T19:51:47Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Applications / Services */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Database Server Management (osuc.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Apache Server Config: ''/etc/httpd/''&lt;br /&gt;
* Apache Web Directory: ''/var/www/''&lt;br /&gt;
* Oracle Home Directory: ''/opt/app/oracle/product/11.2.0/db_2''&lt;br /&gt;
* Oracle Base Directory: ''/opt/app/oracle''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* OJ_Break API - http://xbiod.osu.edu/OJ_Break/&lt;br /&gt;
* Database Gateway - http://osuc.biosci.ohio-state.edu/hymDB/&lt;br /&gt;
* LSID / GUID Metadata Handler - http://bioguid.osu.edu/&lt;br /&gt;
* xBio:D Javascript Library - http://xbiod.osu.edu/xbiod_lib/xbiod.js&lt;br /&gt;
* HOL - http://hol.osu.edu/&lt;br /&gt;
* vSysLab - http://vsyslab.osu.edu/&lt;br /&gt;
* DB Manager - http://osuc-mgr.osu.edu/&lt;br /&gt;
* HNS - http://hns.osu.edu/&lt;br /&gt;
* Platy site - osuc.biosci.ohio-state.edu/hymDB/eol_scelionidae.home&lt;br /&gt;
* HOL-based sites (Acarology, Bivalves, Fishes, UCFC)&lt;br /&gt;
&lt;br /&gt;
== Startup Database ==&lt;br /&gt;
&lt;br /&gt;
Although the database and all of the web services should automatically begin on startup, the database and its listener do not seem to obey. These instructions will provide you with information on starting the database. The assumption is that the user is already logged into the OSUC server.&lt;br /&gt;
&lt;br /&gt;
# Startup the database: $ &amp;lt;code&amp;gt;dbstart $ORACLE_HOME&amp;lt;/code&amp;gt;&lt;br /&gt;
# Start the database listener: $ &amp;lt;code&amp;gt;lsnrctl start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Database Backup ==&lt;br /&gt;
The database is backup up daily at 10PM via the db_backup.sh script. This script create a database dump using the ''exp'' command and transfers this file via FTP to the ''dumpfiles'' directory of the hymfiles web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Dataset Export ==&lt;br /&gt;
Data sets that are intended to be automatically updated in the xBio:D IPT must be specified within the ''export_dwca_collections.py'' found within the ''cgi-bin'' of the web server. Exports are placed into the data exports directory of the web server and present for harvesting by a supplementary script found on the hymfiles server where the IPT resides.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Automatic File Cleanup ==&lt;br /&gt;
&lt;br /&gt;
The database server hosts the xBio:D database, the APIs, HOL, vSysLab, DB Manager, HNS, and the various HOL-based sites, however the available hard disk space is somewhat limited. Trace and log files quickly fill up available space that requires a solution that addresses the issue periodically. There are two scripts on server that remove temporary files that may cause problems.&lt;br /&gt;
* The first script, removeOldTraceFiles.py, removes the Oracle trace files used by the optimizer to make database usage efficient. If trace files are older than five days, the script will remove these files to save space.&lt;br /&gt;
* The second script, removeOldDataExports.py, removes data exports from the various web applications. This script removes any export that has resided on the server for over a month.&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Javascript_Library_Reference&amp;diff=2143</id>
		<title>XBio:D Javascript Library Reference</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Javascript_Library_Reference&amp;diff=2143"/>
		<updated>2015-07-22T19:33:16Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Loading the xBio:D JavaScript Library */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Introduction'''&lt;br /&gt;
&lt;br /&gt;
The xBio:D JavaScript library offers the functionality to create rich, dynamic, and interactive features for use with the [[OJ_Break API Reference|OJ_Break API]]. The OJ_Break API provides procedures to retrieve data within the xBio:D database, and the xBio:D JS library is how that data gets presented. Users planning on working with the xBio:D JS library should be familiar with JavaScript programming and object-oriented programming. &lt;br /&gt;
&lt;br /&gt;
== API Access ==&lt;br /&gt;
&lt;br /&gt;
All functionality in the xBio:D JS library depends on access of data from the OJ_Break API. See [[OJ_Break API Access]] for an overview of the API and how to obtain an [[OJ_Break API Access#key|API access key]].&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
An easy way to become familiar with the xBio:D JS library is to see a simple example of a web application which uses two xBio:D methods. The first is a Google Maps widget which takes data from the OJ_Break method [[OJ_Break API Reference#getLocalities|getLocalities]] for a specified [[OJ_Break API Data Type Glossary#tnuid_2|tnuid]] and displays the data onto an interactive map. Read more about the [https://developers.google.com/maps/documentation/javascript/tutorial Google Maps JavaScript API]. The second method used in the example is a listing of included taxa for a specified tnuid by using the OJ_Break method [[OJ_Break API Reference#getIncludedTaxa|getIncludedTaxa]].&lt;br /&gt;
&lt;br /&gt;
[[File:wiki-test.png|alt=source code for a simple xBio:D web application.|Simple example of web application.]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--  1 &amp;lt;span style=&amp;quot;color:purple&amp;quot;&amp;gt;&amp;lt;!DOCTYPE HTML&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  2 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;html&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  3 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  4    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;meta &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;charset&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;UTF-8&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;/&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  5    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;title&amp;gt;&amp;lt;/span&amp;gt;xBio:D API Test&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/title&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  6    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;link &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;rel&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;stylesheet&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt; type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/css&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt; href&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;xbiod.css&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  7    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt; src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;&amp;lt;nowiki&amp;gt;http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  8    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt; src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;&amp;lt;nowiki&amp;gt;http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
  9    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt; src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;&amp;lt;nowiki&amp;gt;https://maps.googleapis.com/maps/api/js?sensor=false&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 10    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script&amp;lt;/span&amp;gt; &amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt; src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;&amp;lt;nowiki&amp;gt;http://osuc.biosci.ohio-state.edu/JSLib/xbiod_lib/xbiod.js&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 11    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 12        &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;// Call the loader for the current page&amp;lt;/span&amp;gt;&lt;br /&gt;
 13        $(document).ready(loader);&lt;br /&gt;
 14&lt;br /&gt;
 15            &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;function&amp;lt;/span&amp;gt; loader() {&lt;br /&gt;
 16&lt;br /&gt;
 17                &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Initialize xBio:D library&amp;lt;/span&amp;gt;&lt;br /&gt;
 18                xbiod.init([&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'visual'&amp;lt;/span&amp;gt;,&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'taxon'&amp;lt;/span&amp;gt;], &amp;lt;span style=&amp;quot;color: green; font-style: italic&amp;quot;&amp;gt;/*API_KEY*/&amp;lt;/span&amp;gt;, function() {&lt;br /&gt;
 19                    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;var&amp;lt;/span&amp;gt; tnuid = &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;605&amp;lt;/span&amp;gt;;&lt;br /&gt;
 20&lt;br /&gt;
 21                    &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;// Load xBio:D components&amp;lt;/span&amp;gt;&lt;br /&gt;
 22                    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;var&amp;lt;/span&amp;gt; visual = &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;new&amp;lt;/span&amp;gt; xbiod.visual();&lt;br /&gt;
 23                    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;var&amp;lt;/span&amp;gt; taxon = &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;new&amp;lt;/span&amp;gt; xbiod.taxon();&lt;br /&gt;
 24		&lt;br /&gt;
 25                    &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;// Load map&amp;lt;/span&amp;gt;&lt;br /&gt;
 26                    visual.showGoogleMap(&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'map_id'&amp;lt;/span&amp;gt;, tnuid);&lt;br /&gt;
 27		&lt;br /&gt;
 28                    &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Load included taxa&amp;lt;/span&amp;gt;&lt;br /&gt;
 29                    taxon.showIncludedTaxa(&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'included_id'&amp;lt;/span&amp;gt;, tnuid, {show_num_spms: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'Y'&amp;lt;/span&amp;gt;});&lt;br /&gt;
 31&lt;br /&gt;
 32                });&lt;br /&gt;
 33            }&lt;br /&gt;
 34    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 35    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;style &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/css&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 36        html { height: &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;100%&amp;lt;/span&amp;gt; }&lt;br /&gt;
 37        body { height: &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;100%&amp;lt;/span&amp;gt;; margin: &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;0&amp;lt;/span&amp;gt;; padding: &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;0&amp;lt;/span&amp;gt; }&lt;br /&gt;
 38        #map_id { height: &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;50%&amp;lt;/span&amp;gt; }&lt;br /&gt;
 39        #included_id { height: &amp;lt;span style=&amp;quot;color: DarkMagenta&amp;quot;&amp;gt;100%&amp;lt;/span&amp;gt; }&lt;br /&gt;
 40    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/style&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 41 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 42 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;body&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 43    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;div &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;id&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;map_id&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;/&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 44    &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;div &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;id&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;included_id&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;/&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 45 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 46 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are a few things to note about this example:&lt;br /&gt;
* The '''&amp;lt;!DOCTYPE html&amp;gt;''' tag is necessary for HTML 5 applications (line 1)&lt;br /&gt;
* Jquery 1.8 library is included with a '''&amp;lt;script&amp;gt;''' tag (line 7) &lt;br /&gt;
* Jquery UI 1.10.4 library is included with a '''&amp;lt;script&amp;gt;''' tag (line 8) &lt;br /&gt;
* The Google Map API JavaScript library is included with a '''&amp;lt;script&amp;gt;''' tag (line 9)&lt;br /&gt;
* The xBio:D JS library is included with a '''&amp;lt;script&amp;gt;''' tag (line 10)&lt;br /&gt;
* A function called ''loader'' intializes the xBio:D resources when the web page has finished loading (line 15)&lt;br /&gt;
* Two objects where created to access the xBio:D components called ''visual'' and ''taxon'' (line 22 - 23)&lt;br /&gt;
* The applications are created by calling there respective methods via the xBio:D library components (line 26 &amp;amp; 29 - 30)&lt;br /&gt;
* In the '''&amp;lt;body&amp;gt;''' there are two '''&amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt;''' elements which create areas to hold the widgets. The first is called ''map_id'' and the second is ''included_id''. (line 43 - 44)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These steps will be explained below. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Declaring Application as HTML 5 ===&lt;br /&gt;
It is recommended for any web application to be declared as a true ''DOCTYPE''. This can easily be done by using the HTML 5 ''DOCTYPE'' as seen below. This allows the application to be more cross-browser compliant. Please refer to the [https://developers.google.com/maps/documentation/javascript/tutorial#HTML5 Google Maps Documentation on HTML 5] for more info.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;&amp;lt;!DOCTYPE html&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Loading JQuery Library ===&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt; &amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&amp;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The URL in the '''&amp;lt;script&amp;gt;''' tag above is the location of the JavaScript file which allows [http://en.wikipedia.org/wiki/JQuery JQuery] 1.8 to run on the web application. JQuery is used in the xBio:D JS library to get methods from the OJ_Break API and other scripts. It is a necessary component of any web app that intends to use xBio:D functionality.&lt;br /&gt;
&lt;br /&gt;
=== Loading the Google Maps API ===&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt; &amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&amp;quot;https://maps.googleapis.com/maps/api/js?sensor=false&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The URL in the '''&amp;lt;script&amp;gt;''' tag above is the location of the JavaScript file which will load all the necessary defintions to allow access to the Maps API. Normally, an access key would need to be provided in order to use the Maps library. See [https://developers.google.com/maps/documentation/javascript/tutorial#Loading_the_Maps_API Loading the Maps API] for more info. This script file is necessary for web apps that use Google Maps as part of the application. It is a necessary file to have in this simple example, but is not required for all xBio:D applications.&lt;br /&gt;
&lt;br /&gt;
=== Loading the xBio:D JavaScript Library ===&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;type&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;text/javascript&amp;quot;&amp;lt;/span&amp;gt; &amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;src&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&amp;quot;http://xbiod.osu.edu/xbiod_lib/xbiod.js&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The URL in the '''&amp;lt;script&amp;gt;''' tage above is the location of the xBio:D JavaScript Library which is a required file for this simple example and any web application that will be using xBio:D applications.&lt;br /&gt;
&lt;br /&gt;
=== Initializing the xBio:D JS Library ===&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;script&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Call the loader for the current page&amp;lt;/span&amp;gt;&lt;br /&gt;
     $(document).ready(loader);&amp;lt;br&amp;gt;&lt;br /&gt;
         &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;function&amp;lt;/span&amp;gt; loader() {&amp;lt;br&amp;gt;&lt;br /&gt;
             &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Initialize xBio:D library&amp;lt;/span&amp;gt;&lt;br /&gt;
             xbiod.init([&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'visual'&amp;lt;/span&amp;gt;,&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'taxon'&amp;lt;/span&amp;gt;], &amp;lt;span style=&amp;quot;color: green; font-style: italic&amp;quot;&amp;gt;/*API_KEY*/&amp;lt;/span&amp;gt;, function(){&lt;br /&gt;
&lt;br /&gt;
To begin using the xBio:D library, first the components need to be loaded. This is done through the xBio:D ''init'' function which takes three parameters: an array of the components to be loaded, an API access key, and a callback function. In this example, the '''visual''' and '''taxon''' resources are passed to the ''init'' function for loading (all resources and their methods can be found in the [[XBio:D Javascript Library Reference#Reference|Reference]] section below). This example also shows where a user would provide an OJ_Break API access key. See [[OJ_Break API Access]] for more information on access keys. Lastly, a callback method needs to be provided which will create the component objects.&lt;br /&gt;
&lt;br /&gt;
==== Component Objects ====&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Load xBio:D components&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;var&amp;lt;/span&amp;gt; visual = &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;new&amp;lt;/span&amp;gt; xbiod.visual();&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;var&amp;lt;/span&amp;gt; taxon = &amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;new&amp;lt;/span&amp;gt; xbiod.taxon();&lt;br /&gt;
&lt;br /&gt;
An object derived from a class is instatiated using the '''new''' keyword and a namespace's constructor. The JavaScript namespace that represents the xBio:D visual applications is the '''visual''' namespace/component and similarly the namespace that represents the xBio:D taxon applications is the '''taxon''' namespace/component. Access to functionality from either of these components requires an object with a reference to that component. These objects allow methods from each component to be called to the web page.&lt;br /&gt;
&lt;br /&gt;
==== Calling Application Methods ====&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Load map&amp;lt;/span&amp;gt;&lt;br /&gt;
 visual.showGoogleMap(&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'map_id'&amp;lt;/span&amp;gt;, tnuid);&lt;br /&gt;
 		&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;// Load included taxa&amp;lt;/span&amp;gt;&lt;br /&gt;
 taxon.showIncludedTaxa(&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'included_id'&amp;lt;/span&amp;gt;, tnuid, {show_num_spms: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'Y'&amp;lt;/span&amp;gt;, taxonFormat: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'&amp;lt;a href=&amp;quot;test.html?tnuid=%tnuid%&amp;quot;&amp;gt;%taxon%&amp;lt;/a&amp;gt; %author% - %num_spms%'&amp;lt;/span&amp;gt;});&lt;br /&gt;
&lt;br /&gt;
Each application has a method associated with it which takes several parameters which will dictate what data it loads, where it will be contained, and options for how it should be presented. These methods and requirements can be found in the [[XBio:D Javascript Library Reference#Reference|Reference]] section.&lt;br /&gt;
&lt;br /&gt;
In the above example, the '''visual''' method ''showGoogleMap'' gets passed a '''&amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt;''' element ID string which decides where it will be contained and a tnuid which will dictate which taxon data the map will locate.&lt;br /&gt;
&lt;br /&gt;
The '''taxon''' method ''showIncludedTaxa'' gets passed similar parameters (a specified '''&amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt;''' element ID string and a tnuid) however it also gets additional options in the form of a [http://www.w3schools.com/js/js_objects.asp JavaScript object literal]. In this example, the option ''[[OJ_Break API Data Type Glossary#show_num_spms|show_num_spms]]'' is given the [[OJ Break API Data Type Glossary#Boolean_Flag| Boolean_flag]] 'Y' signifying that the application should display the number of specimens for that particular taxon and ''taxonFormat'' is assigned to present the data as links using the '''&amp;lt;a&amp;gt;''' tag.&lt;br /&gt;
&lt;br /&gt;
==== Element Containers ====&lt;br /&gt;
Each method requires one or more unique '''&amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt;''' tag IDs as string parameters (seen in the example '''&amp;lt;body&amp;gt;''' below). This will be used to specify where the resource will be contained in the web page.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;body&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;div &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;id&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;map_id&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;/&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;div &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: purple&amp;quot;&amp;gt;id&amp;lt;/span&amp;gt;=&amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;&amp;quot;included_id&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;/&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Reference ==&lt;br /&gt;
=== Agent ===&lt;br /&gt;
==== showAgentInfo ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays information about an agent, including name, contact information, and a short biography.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* [[OJ_Break v2 Agent Reference#agent_id|agent_id]]&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showAgentOccurrences ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays collected occurrences for a specified agent on a Google Map. Creates two windows.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* agent_id ([[OJ_Break API Data Type Glossary#collector_id_2|?]])&lt;br /&gt;
* options&lt;br /&gt;
&lt;br /&gt;
===== Options =====&lt;br /&gt;
* info_element_id - ID String (defaults to element_id parameter)&lt;br /&gt;
* generalFormat - HTML String&lt;br /&gt;
* markers - String ('spiderfy' or undefined). Requires additional dependencies (see below).&lt;br /&gt;
* offset - Number&lt;br /&gt;
* limit - Number&lt;br /&gt;
* icons - Object&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
===== Additional Requirements =====&lt;br /&gt;
* [https://developers.google.com/maps/documentation/javascript/ Google Maps API v3]&lt;br /&gt;
* [https://github.com/jawj/OverlappingMarkerSpiderfier Overlapping Marker Spiderfier]&lt;br /&gt;
&lt;br /&gt;
==== showAgentOccurrenceLocalityInfo ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays locality information for a certain agent's collecting occurrence.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* loc_id ([[OJ_Break API Data Type Glossary#loc_id_2|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
==== showDescribedTaxa ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays all taxa described by the specified agent.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* author_id ([[OJ_Break API Data Type Glossary#author_id_2|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* taxonFormat - String&lt;br /&gt;
* useTaxonItalics - Boolean&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showPublications ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays all publications for a specified agent.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* author_id ([[OJ_Break API Data Type Glossary#author_id_2|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
=== Occurrence ===&lt;br /&gt;
==== showBiologicalInfo ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays both the habitat and associations for a selected occurrence identifier.&lt;br /&gt;
&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* occurrence_id ([[OJ_Break API Data Type Glossary#occurrence_id|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showOccurrenceInfo ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays collecting trip info for a specified occurrence.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* occurrence_id ([[OJ_Break API Data Type Glossary#occurrence_id|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showDeterminations ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays determinations for a specified occurence.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* occurrence_id ([[OJ_Break API Data Type Glossary#occurrence_id|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showLocalityInfo ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays locality info for a specified occurrence. &lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* occurrence_id ([[OJ_Break API Data Type Glossary#occurrence_id|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showSpecimenInfo ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays specimen info for a specified occurrence.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* occurrence_id ([[OJ_Break API Data Type Glossary#occurrence_id|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
=== Search ===&lt;br /&gt;
==== showSearch ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
A JQuery UI autocomplete search bar which can search for taxa, occurrences, institutions, agents, journals, localities, and places.&lt;br /&gt;
&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id&lt;br /&gt;
* options&lt;br /&gt;
&lt;br /&gt;
===== Options =====&lt;br /&gt;
* search - the type of search to execute. Controls the passing of URL parameters to methods. Can be specified a either 'id' or 'name'. Defaults to 'id'&lt;br /&gt;
* domains - array of the below object elements&lt;br /&gt;
** type - a domain keyword for which data gets searched for&lt;br /&gt;
** handler_url - a URL that will be passed the ID of the selected type option&lt;br /&gt;
&lt;br /&gt;
===== Additional Information =====&lt;br /&gt;
====== Category Options Formatting ======&lt;br /&gt;
Below is an example of how the categories should be input:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;// Load search&amp;lt;/span&amp;gt;&lt;br /&gt;
 search.showSearch(&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;'search_id'&amp;lt;/span&amp;gt;, {domains: [{type: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'taxon'&amp;lt;/span&amp;gt;, handler_url: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'&amp;lt;nowiki&amp;gt;http://domain.url/index.html&amp;lt;/nowiki&amp;gt;'&amp;lt;/span&amp;gt;}, {type: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'occurrence'&amp;lt;/span&amp;gt;, handler_url: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'&amp;lt;nowiki&amp;gt;http://domain.url/occurrence.html&amp;lt;/nowiki&amp;gt;'&amp;lt;/span&amp;gt;}]});&lt;br /&gt;
&lt;br /&gt;
=== Taxon ===&lt;br /&gt;
==== showAssociations ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays all associations for a specified taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* basic_only - Boolean_flag&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showInstitutions ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays institutions for which specimens of the selected taxon level belong.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
==== showContributors ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays all contributing agents related to the occurrence, taxonomy, literature, and media of a taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* inst_id&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showDeterminers ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays determiners for a specified taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* inst_id&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showHabitats ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays all identified habitats for a selected taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showIncludedTaxa ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays taxa directly included within a taxon but not synonymous with it.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* inst_id&lt;br /&gt;
* show_syns&lt;br /&gt;
* show_fossiles&lt;br /&gt;
* types_only&lt;br /&gt;
* useTaxonItalics - Boolean&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showLiterature ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays relevent publications for a specified taxon with links to the literature when available.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* show_children - Boolean_flag &lt;br /&gt;
* show_bib - Boolean_flag&lt;br /&gt;
* useTaxonItalics - Boolean&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showSubordinateTaxa ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays the count of valid taxa levels available below the current taxon rank.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* inst_id&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showSynonyms ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays all taxa which are objectively or subjectively synonymous with a selected taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* show_fossils&lt;br /&gt;
* useTaxonItalics - boolean&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showTaxonMedia ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays a table of all media associated to a specific taxon rank.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* inst_id&lt;br /&gt;
* row_count - Number&lt;br /&gt;
* media_type&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
==== showTypes ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
Displays information and specimen types for a specified taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* [[xBio:D Javascript Library Reference#Element_Containers|element_id]]&lt;br /&gt;
* tnuid&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* show_children&lt;br /&gt;
* inst_id&lt;br /&gt;
* primary_only - Boolean_flag&lt;br /&gt;
* basic_only - Boolean_flag&lt;br /&gt;
* offset - number&lt;br /&gt;
* limit - number&lt;br /&gt;
* useTaxonItalics - boolean&lt;br /&gt;
* widget_options&lt;br /&gt;
&lt;br /&gt;
=== Visual ===&lt;br /&gt;
==== showGoogleMap ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
A Google map which displays locality markers for a specified taxon.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* tnuid ([[OJ_Break API Data Type Glossary#tnuid_2|?]])&lt;br /&gt;
* options&lt;br /&gt;
===== Options =====&lt;br /&gt;
* place_id - Number&lt;br /&gt;
* inst_id - Number&lt;br /&gt;
* use_sex_icons - Boolean_flag&lt;br /&gt;
* show_children - Boolean_flag&lt;br /&gt;
* limit - Number&lt;br /&gt;
* offset - Number&lt;br /&gt;
* markers - Number&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
===== Additional Requirements =====&lt;br /&gt;
* [https://developers.google.com/maps/documentation/javascript/ Google Maps API v3]&lt;br /&gt;
* [https://github.com/jawj/OverlappingMarkerSpiderfier Overlapping Marker Spiderfier]&lt;br /&gt;
&lt;br /&gt;
==== showTaxonHierarchy ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
An interactive, tree-based animation which allows a user to navigate through a selected taxon's hierarchy and all taxa available through the OJ_Break API.&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* element_id ([[xBio:D Javascript Library Reference#Element_Containers|?]])&lt;br /&gt;
* tnuid ([[OJ_Break API Data Type Glossary#tnuid_2|?]])&lt;br /&gt;
* requestedNode&lt;br /&gt;
* options&lt;br /&gt;
&lt;br /&gt;
===== Options =====&lt;br /&gt;
* show_num_spms - Boolean_flag&lt;br /&gt;
* inst_id - Number&lt;br /&gt;
* show_syns - Boolean_flag&lt;br /&gt;
* show_fossils - Boolean_flag&lt;br /&gt;
* types_only - Boolean_flag&lt;br /&gt;
* nodeColor - string or hexadecimal number&lt;br /&gt;
* backgroundColor - string or hexadecimal number&lt;br /&gt;
* handler_url - File path string/URL&lt;br /&gt;
* size - JavaScript object with two string properties:&lt;br /&gt;
** width - either a number or string in pixels&lt;br /&gt;
** height - either a number of string in pixels&lt;br /&gt;
* imagePath - string of relative path to a folder containing necessary images.&lt;br /&gt;
* widget_options - Object&lt;br /&gt;
&lt;br /&gt;
===== Additional Requirements =====&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Processing.js Processing.js] 1.4.1+&lt;br /&gt;
* Pass requestedNode parameter a value of '''null''' when calling function. See below:&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;// Load taxon hierarchy&amp;lt;/span&amp;gt;&lt;br /&gt;
 visual.showTaxonHierarchy(&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;'canvas_id'&amp;lt;/span&amp;gt;, tnuid, &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;null&amp;lt;/span&amp;gt;, {&amp;lt;span style=&amp;quot;color: green;&amp;quot;&amp;gt; /*options*/ &amp;lt;/span&amp;gt;});&lt;br /&gt;
&lt;br /&gt;
===== Additional Information =====&lt;br /&gt;
====== URL Handler Option ======&lt;br /&gt;
The ''handler_url'' option can be used to allow the nodes to have links attached to them, so that a user may follow the link for more information on that specific taxon.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;// Load taxon hierarchy&amp;lt;/span&amp;gt;&lt;br /&gt;
 visual.showTaxonHierarchy(&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;'canvas_id'&amp;lt;/span&amp;gt;, tnuid, &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;null&amp;lt;/span&amp;gt;, {nodeColor: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'cyan'&amp;lt;/span&amp;gt;, backgroundColor: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'#FFFFFF'&amp;lt;/span&amp;gt;, handler_url: &amp;lt;span style=&amp;quot;color: green&amp;quot;&amp;gt;'&amp;lt;nowiki&amp;gt;http://hol.osu.edu/index.html&amp;lt;/nowiki&amp;gt;'&amp;lt;/span&amp;gt;});&lt;br /&gt;
&lt;br /&gt;
In this example, a default web page URL is given (note the use of http:// at the beginning). When provided a URL, the taxon hierachy animation will present a link button to the top right of the node that is currently being highlighted (see image below). This link will not be present if a URL is not specified. If this button is clicked, the ''handler_url'' link will be followed.&lt;br /&gt;
&lt;br /&gt;
====== Size Option ======&lt;br /&gt;
The taxon hierarchy application can be resized in one of two ways: via [http://en.wikipedia.org/wiki/Cascading_Style_Sheets CSS] (preferred) or by inputting the dimensions of the HTML canvas into the API method call as options. One way this can be done is by specifying the width and height as numbers:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;// Load taxon hierarchy&amp;lt;/span&amp;gt;&lt;br /&gt;
 visual.showTaxonHierarchy(&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;'canvas_id'&amp;lt;/span&amp;gt;, tnuid, &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;null&amp;lt;/span&amp;gt;, {size: {width: &amp;lt;span style=&amp;quot;color:purple;&amp;quot;&amp;gt;300&amp;lt;/span&amp;gt;, height: &amp;lt;span style=&amp;quot;color:purple;&amp;quot;&amp;gt;900&amp;lt;/span&amp;gt;}});&lt;br /&gt;
&lt;br /&gt;
The dimensions of the canvas can also be input as pixels:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;// Load taxon hierarchy&amp;lt;/span&amp;gt;&lt;br /&gt;
 visual.showTaxonHierarchy(&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;'canvas_id'&amp;lt;/span&amp;gt;, tnuid, &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;null&amp;lt;/span&amp;gt;, {size: {width: &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;&amp;quot;300px&amp;quot;&amp;lt;/span&amp;gt;, height: &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;&amp;quot;900px&amp;quot;&amp;lt;/span&amp;gt;}});&lt;br /&gt;
&lt;br /&gt;
Both of these methods (CSS and parameter passing) are valid, but they should never both be used at the same time since unexpected errors may occur.&lt;br /&gt;
&lt;br /&gt;
====== Image Path Option ======&lt;br /&gt;
Due to security restrictions, Processingjs is limited in its function to request images. As a consequence, any user wishing to use the animation must have copies of the required images available locally on their server. To access these images, a relative directory path must be input in the form of a optional parameter. The call may look something like this:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;// Load taxon hierarchy&amp;lt;/span&amp;gt;&lt;br /&gt;
 visual.showTaxonHierarchy(&amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;'canvas_id'&amp;lt;/span&amp;gt;, tnuid, &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;null&amp;lt;/span&amp;gt;, {imagePath: &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;&amp;quot;media/images/&amp;quot;&amp;lt;/span&amp;gt;});&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==== methodName ====&lt;br /&gt;
===== Description =====&lt;br /&gt;
&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
* &lt;br /&gt;
===== Options =====&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
===== Additional Requirements =====&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:xBioD Library]]&lt;br /&gt;
[[Category:APIs]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Portions of this page are modifications based on work created and [https://developers.google.com/readme/policies/ shared by Google] and used according to terms described in the [http://creativecommons.org/licenses/by/3.0/ Creative Commons 3.0 Attribution License].&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Hymfiles_Server_Management&amp;diff=2142</id>
		<title>Hymfiles Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Hymfiles_Server_Management&amp;diff=2142"/>
		<updated>2015-07-22T19:28:42Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''Hymfiles Server Management (hymfiles.biosci.ohio-state.edu)'''   == General Locations == * IIS Web Directory: ''C:\inetpub\wwwroot'' * xBio:D IPT Directory: ''C:\ipt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Hymfiles Server Management (hymfiles.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''C:\inetpub\wwwroot''&lt;br /&gt;
* xBio:D IPT Directory: ''C:\ipt_data''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* PDF storage - http://hymfiles.biosci.ohio-state.edu/pdfs-osuc/&lt;br /&gt;
* PDF storage (Antbase) - http://hymfiles.biosci.ohio-state.edu/pdfs-antbase/&lt;br /&gt;
* DB Manager taxon images - http://hymfiles.biosci.ohio-state.edu/taxon_images&lt;br /&gt;
* Bonobo Git Server - http://hymfiles.biosci.ohio-state.edu/Bonobo.Git.Server/&lt;br /&gt;
* Redmine Bug Tracker/Project Manager - http://hymfiles.biosci.ohio-state.edu/redmine/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Data Backup ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2141</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2141"/>
		<updated>2015-07-22T19:21:51Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management (delong.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA - http://xbiod.osu.edu/dea/&lt;br /&gt;
* Specimage - http://specimage.osu.edu&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site - http://bugs.osu.edu&lt;br /&gt;
* Collection Web Site (Wordpress) - http://osuc.osu.edu/osuc-wp/&lt;br /&gt;
* xBio:D Wiki - http://xbiod.osu.edu/wiki/&lt;br /&gt;
* NFJ Lab Web Site - http://wasps.osu.edu&lt;br /&gt;
* BLB mp3 storage - http://osuc.osu.edu/blbmp3s/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DEA Database Backup ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2140</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2140"/>
		<updated>2015-07-22T19:18:43Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management (delong.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA&lt;br /&gt;
* Specimage&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site&lt;br /&gt;
* Collection Web Site (Wordpress)&lt;br /&gt;
* xBio:D Wiki&lt;br /&gt;
* NFJ Lab Web Site&lt;br /&gt;
* BLB mp3 storage&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DEA Database Backup ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2139</id>
		<title>XBio:D Database Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2139"/>
		<updated>2015-07-22T19:12:23Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Database Server Management (osuc.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Apache Server Config: ''/etc/httpd/''&lt;br /&gt;
* Apache Web Directory: ''/var/www/''&lt;br /&gt;
* Oracle Home Directory: ''/opt/app/oracle/product/11.2.0/db_2''&lt;br /&gt;
* Oracle Base Directory: ''/opt/app/oracle''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* OJ_Break API&lt;br /&gt;
* Database Gateway&lt;br /&gt;
* LSID / GUID Metadata Handler&lt;br /&gt;
* xBio:D Javascript Library&lt;br /&gt;
* HOL&lt;br /&gt;
* vSysLab&lt;br /&gt;
* DB Manager&lt;br /&gt;
* HNS&lt;br /&gt;
* Platy site&lt;br /&gt;
* HOL-based sites (Acarology, Bivalves, Fishes, UCFC)&lt;br /&gt;
&lt;br /&gt;
== Startup Database ==&lt;br /&gt;
&lt;br /&gt;
Although the database and all of the web services should automatically begin on startup, the database and its listener do not seem to obey. These instructions will provide you with information on starting the database. The assumption is that the user is already logged into the OSUC server.&lt;br /&gt;
&lt;br /&gt;
# Startup the database: $ &amp;lt;code&amp;gt;dbstart $ORACLE_HOME&amp;lt;/code&amp;gt;&lt;br /&gt;
# Start the database listener: $ &amp;lt;code&amp;gt;lsnrctl start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Database Backup ==&lt;br /&gt;
The database is backup up daily at 10PM via the db_backup.sh script. This script create a database dump using the ''exp'' command and transfers this file via FTP to the ''dumpfiles'' directory of the hymfiles web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Dataset Export ==&lt;br /&gt;
Data sets that are intended to be automatically updated in the xBio:D IPT must be specified within the ''export_dwca_collections.py'' found within the ''cgi-bin'' of the web server. Exports are placed into the data exports directory of the web server and present for harvesting by a supplementary script found on the hymfiles server where the IPT resides.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Automatic File Cleanup ==&lt;br /&gt;
&lt;br /&gt;
The database server hosts the xBio:D database, the APIs, HOL, vSysLab, DB Manager, HNS, and the various HOL-based sites, however the available hard disk space is somewhat limited. Trace and log files quickly fill up available space that requires a solution that addresses the issue periodically. There are two scripts on server that remove temporary files that may cause problems.&lt;br /&gt;
* The first script, removeOldTraceFiles.py, removes the Oracle trace files used by the optimizer to make database usage efficient. If trace files are older than five days, the script will remove these files to save space.&lt;br /&gt;
* The second script, removeOldDataExports.py, removes data exports from the various web applications. This script removes any export that has resided on the server for over a month.&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2138</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2138"/>
		<updated>2015-07-22T19:11:50Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management (delong.biosci.ohio-state.edu)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA&lt;br /&gt;
* Specimage&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site&lt;br /&gt;
* Collection Web Site (Wordpress)&lt;br /&gt;
* xBio:D Wiki&lt;br /&gt;
* NFJ Lab Web Site&lt;br /&gt;
* Redmine Bug Tracker/Project Manager&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DEA Database Backup ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2137</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2137"/>
		<updated>2015-07-22T17:24:10Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Protected &amp;quot;Collection Server Management&amp;quot; ([Edit=OSUC users group] (indefinite) [Move=OSUC users group] (indefinite) [Read=OSUC users group] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA&lt;br /&gt;
* Specimage&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site&lt;br /&gt;
* Collection Web Site (Wordpress)&lt;br /&gt;
* xBio:D Wiki&lt;br /&gt;
* NFJ Lab Web Site&lt;br /&gt;
* Redmine Bug Tracker/Project Manager&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DEA Database Backup ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2136</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2136"/>
		<updated>2015-07-22T17:21:52Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA&lt;br /&gt;
* Specimage&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site&lt;br /&gt;
* Collection Web Site (Wordpress)&lt;br /&gt;
* xBio:D Wiki&lt;br /&gt;
* NFJ Lab Web Site&lt;br /&gt;
* Redmine Bug Tracker/Project Manager&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DEA Database Backup ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2135</id>
		<title>Collection Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_Server_Management&amp;diff=2135"/>
		<updated>2015-07-22T17:12:01Z</updated>

		<summary type="html">&lt;p&gt;Jcora: Created page with &amp;quot;----   '''Collection Server Management'''   == General Locations == * IIS Web Directory: ''D:\wwwroot'' * DEA Home Directory: ''D:\python_projects\dea'' * Redmine Home Directo...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Collection Server Management'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* IIS Web Directory: ''D:\wwwroot''&lt;br /&gt;
* DEA Home Directory: ''D:\python_projects\dea''&lt;br /&gt;
* Redmine Home Directory: ''D:\redmine''&lt;br /&gt;
* Backup Scripts Directory: ''C:\backup_scripts''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* DEA&lt;br /&gt;
* Specimage&lt;br /&gt;
* xBio:D Gateway (Redirects)&lt;br /&gt;
* Collection Web Site&lt;br /&gt;
* Collection Web Site (Wordpress)&lt;br /&gt;
* xBio:D Wiki&lt;br /&gt;
* NFJ Lab Web Site&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DEA Database Backup ==&lt;br /&gt;
The database is backup up daily at 9PM via the mysql_backup.bat script. This script create a database dump and transfers saves this file to the ''dumpfiles'' directory of the web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2134</id>
		<title>XBio:D Database Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2134"/>
		<updated>2015-07-21T21:33:38Z</updated>

		<summary type="html">&lt;p&gt;Jcora: /* Applications / Services */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Database Server Management'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Apache Server Config: ''/etc/httpd/''&lt;br /&gt;
* Apache Web Directory: ''/var/www/''&lt;br /&gt;
* Oracle Home Directory: ''/opt/app/oracle/product/11.2.0/db_2''&lt;br /&gt;
* Oracle Base Directory: ''/opt/app/oracle''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* OJ_Break API&lt;br /&gt;
* Database Gateway&lt;br /&gt;
* LSID / GUID Metadata Handler&lt;br /&gt;
* xBio:D Javascript Library&lt;br /&gt;
* HOL&lt;br /&gt;
* vSysLab&lt;br /&gt;
* DB Manager&lt;br /&gt;
* HNS&lt;br /&gt;
* Platy site&lt;br /&gt;
* HOL-based sites (Acarology, Bivalves, Fishes, UCFC)&lt;br /&gt;
&lt;br /&gt;
== Startup Database ==&lt;br /&gt;
&lt;br /&gt;
Although the database and all of the web services should automatically begin on startup, the database and its listener do not seem to obey. These instructions will provide you with information on starting the database. The assumption is that the user is already logged into the OSUC server.&lt;br /&gt;
&lt;br /&gt;
# Startup the database: $ &amp;lt;code&amp;gt;dbstart $ORACLE_HOME&amp;lt;/code&amp;gt;&lt;br /&gt;
# Start the database listener: $ &amp;lt;code&amp;gt;lsnrctl start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Database Backup ==&lt;br /&gt;
The database is backup up daily at 10PM via the db_backup.sh script. This script create a database dump using the ''exp'' command and transfers this file via FTP to the ''dumpfiles'' directory of the hymfiles web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Dataset Export ==&lt;br /&gt;
Data sets that are intended to be automatically updated in the xBio:D IPT must be specified within the ''export_dwca_collections.py'' found within the ''cgi-bin'' of the web server. Exports are placed into the data exports directory of the web server and present for harvesting by a supplementary script found on the hymfiles server where the IPT resides.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Automatic File Cleanup ==&lt;br /&gt;
&lt;br /&gt;
The database server hosts the xBio:D database, the APIs, HOL, vSysLab, DB Manager, HNS, and the various HOL-based sites, however the available hard disk space is somewhat limited. Trace and log files quickly fill up available space that requires a solution that addresses the issue periodically. There are two scripts on server that remove temporary files that may cause problems.&lt;br /&gt;
* The first script, removeOldTraceFiles.py, removes the Oracle trace files used by the optimizer to make database usage efficient. If trace files are older than five days, the script will remove these files to save space.&lt;br /&gt;
* The second script, removeOldDataExports.py, removes data exports from the various web applications. This script removes any export that has resided on the server for over a month.&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=Collection_(OSUC)_Private_Portal&amp;diff=2133</id>
		<title>Collection (OSUC) Private Portal</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=Collection_(OSUC)_Private_Portal&amp;diff=2133"/>
		<updated>2015-07-21T20:47:36Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Welcome to the OSUC Private Portal'''&lt;br /&gt;
&lt;br /&gt;
This section of the wiki is private for users associated with the C.A. Triplehorn Insect Collection (OSUC). All subsequent pages, in order to be private, must be protected. Protect new pages by clicking the down arrow next to &amp;quot;View history&amp;quot; at the top, then select &amp;quot;Protect&amp;quot;. When the protection setting page is loaded, choose &amp;quot;OSUC users group&amp;quot; from the &amp;quot;Edit&amp;quot; box to reject all users who are not part of the OSUC users group from editing or reading the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* [[Miscellaneous Publications]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
* [[xBio:D Data Management]]&lt;br /&gt;
* [[xBio:D Database Server Management]]&lt;br /&gt;
* [[Collection Server Management]]&lt;br /&gt;
* [[Hymfiles Server Management]]&lt;br /&gt;
* [[Macroteleia Server Management]]&lt;br /&gt;
* [[Tyrannoscelio Server Management]]&lt;br /&gt;
* [[Initiate ASC Offsite Backup]]&lt;br /&gt;
* [[OBCP Cluster Management]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bioinformatics ==&lt;br /&gt;
* [[Data Validation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
	<entry>
		<id>https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2132</id>
		<title>XBio:D Database Server Management</title>
		<link rel="alternate" type="text/html" href="https://xbiod.osu.edu/index.php?title=XBio:D_Database_Server_Management&amp;diff=2132"/>
		<updated>2015-07-21T20:40:43Z</updated>

		<summary type="html">&lt;p&gt;Jcora: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''xBio:D Database Server Management'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== General Locations ==&lt;br /&gt;
* Apache Server Config: ''/etc/httpd/''&lt;br /&gt;
* Apache Web Directory: ''/var/www/''&lt;br /&gt;
* Oracle Home Directory: ''/opt/app/oracle/product/11.2.0/db_2''&lt;br /&gt;
* Oracle Base Directory: ''/opt/app/oracle''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Applications / Services ==&lt;br /&gt;
* OJ_Break API&lt;br /&gt;
* Database Gateway&lt;br /&gt;
* xBio:D Javascript Library&lt;br /&gt;
* HOL&lt;br /&gt;
* vSysLab&lt;br /&gt;
* DB Manager&lt;br /&gt;
* HNS&lt;br /&gt;
* Platy site&lt;br /&gt;
* HOL-based sites (Acarology, Bivalves, Fishes, UCFC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Startup Database ==&lt;br /&gt;
&lt;br /&gt;
Although the database and all of the web services should automatically begin on startup, the database and its listener do not seem to obey. These instructions will provide you with information on starting the database. The assumption is that the user is already logged into the OSUC server.&lt;br /&gt;
&lt;br /&gt;
# Startup the database: $ &amp;lt;code&amp;gt;dbstart $ORACLE_HOME&amp;lt;/code&amp;gt;&lt;br /&gt;
# Start the database listener: $ &amp;lt;code&amp;gt;lsnrctl start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Database Backup ==&lt;br /&gt;
The database is backup up daily at 10PM via the db_backup.sh script. This script create a database dump using the ''exp'' command and transfers this file via FTP to the ''dumpfiles'' directory of the hymfiles web directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Dataset Export ==&lt;br /&gt;
Data sets that are intended to be automatically updated in the xBio:D IPT must be specified within the ''export_dwca_collections.py'' found within the ''cgi-bin'' of the web server. Exports are placed into the data exports directory of the web server and present for harvesting by a supplementary script found on the hymfiles server where the IPT resides.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Automatic File Cleanup ==&lt;br /&gt;
&lt;br /&gt;
The database server hosts the xBio:D database, the APIs, HOL, vSysLab, DB Manager, HNS, and the various HOL-based sites, however the available hard disk space is somewhat limited. Trace and log files quickly fill up available space that requires a solution that addresses the issue periodically. There are two scripts on server that remove temporary files that may cause problems.&lt;br /&gt;
* The first script, removeOldTraceFiles.py, removes the Oracle trace files used by the optimizer to make database usage efficient. If trace files are older than five days, the script will remove these files to save space.&lt;br /&gt;
* The second script, removeOldDataExports.py, removes data exports from the various web applications. This script removes any export that has resided on the server for over a month.&lt;br /&gt;
[[Category:OSUC Private]]&lt;/div&gt;</summary>
		<author><name>Jcora</name></author>
		
	</entry>
</feed>