<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Product Features &#8211; OpenSpecimen</title>
	<atom:link href="https://www.openspecimen.org/category/product-features/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.openspecimen.org</link>
	<description>Biobank LIMS trusted by the leading research centers</description>
	<lastBuildDate>Wed, 15 Feb 2023 09:46:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://www.openspecimen.org/wp-content/uploads/2021/06/Fevicon-ops.png</url>
	<title>Product Features &#8211; OpenSpecimen</title>
	<link>https://www.openspecimen.org</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Encryption (at rest) OpenSpecimen MySQL Database</title>
		<link>https://www.openspecimen.org/encryption-at-rest-openspecimen-mysql-database/</link>
		
		<dc:creator><![CDATA[openspecimen]]></dc:creator>
		<pubDate>Thu, 16 Jul 2020 05:39:38 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[biobanking]]></category>
		<category><![CDATA[biorepository]]></category>
		<category><![CDATA[biospecimen]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=7773</guid>

					<description><![CDATA[Biobanks often store patient (PHI) data, which is confidential and legally protected. If the data is not stored securely it will pose a serious business risk that can invoke lawful ... <p class="read-more-container"><a title="Encryption (at rest) OpenSpecimen MySQL Database" class="read-more button" href="https://www.openspecimen.org/encryption-at-rest-openspecimen-mysql-database/#more-7773" aria-label="More on Encryption (at rest) OpenSpecimen MySQL Database">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">Biobanks often store patient (</span><a href="https://en.wikipedia.org/wiki/Protected_health_information" target="_blank" rel="noopener"><span style="font-weight: 400;">PHI</span></a><span style="font-weight: 400;">) data, which is confidential and legally protected. If the data is not stored securely it will pose a serious business risk that can invoke lawful action, </span><span style="font-weight: 400;">such as the <a href="https://en.wikipedia.org/wiki/2018_SingHealth_data_breach" target="_blank" rel="noopener">Singapore Patient Data Breach in 2018</a></span><span style="font-weight: 400;">.</span></p>
<p><span style="font-weight: 400;">This article is written based on our implementation experience at the <a href="http://biorepository.unsw.edu.au/" target="_blank" rel="noopener">University of New South Wales biorepository</a>.</span></p>
<p><span style="font-weight: 400;">To ensure data privacy and minimize data vulnerability, Krishagni provides an option to encrypt the OpenSpecimen MySQL database “at rest”, which will ensure that if anyone with malicious intent gets access to the server will not decrypt the data.</span></p>
<p><span style="font-weight: 400;">Below is a typical network diagram of OpenSpecimen deployment. Usually, on-premise deployments are safer th</span>an on-cloud deployments since the database is deployed within the institute’s VPN. However, when the database is on the cloud, it is vulnerable to attacks.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-11554" src="https://www.openspecimen.org/wp-content/uploads/2020/07/Network-Topology-1.png" alt="" width="1014" height="564" srcset="https://www.openspecimen.org/wp-content/uploads/2020/07/Network-Topology-1.png 1014w, https://www.openspecimen.org/wp-content/uploads/2020/07/Network-Topology-1-300x167.png 300w, https://www.openspecimen.org/wp-content/uploads/2020/07/Network-Topology-1-768x427.png 768w" sizes="(max-width: 1014px) 100vw, 1014px" /></p>
<p><span style="font-weight: 400;">There are two types of data encryption:</span></p>
<p><b>At rest</b><span style="font-weight: 400;">: In the database, all the patient&#8217;s data is stored in files. The attacker can retrieve sensitive data if they get direct access to these files. To avoid this, we can encrypt these data files in such a way that even if someone gains access to the data files, they cannot access the data.</span></p>
<p><b>In transit</b><span style="font-weight: 400;">: When data transfers through a network, it can be intercepted before it reaches the target system. It is also known as &#8220;</span><a href="https://en.wikipedia.org/wiki/Man-in-the-middle_attack" target="_blank" rel="noopener"><span style="font-weight: 400;" >Man In The Middle</span></a><span style="font-weight: 400;">&#8221; attack. To prevent this, the data during transit is encrypted using SSL encryption.</span></p>
<h2><b>MySQL Database Encryption</b></h2>
<p><span style="font-weight: 400;">The MySQL database can be encrypted using the “Keyring Plugin” provided by MySQL.</span></p>
<p>&nbsp;</p>
<p><img decoding="async" class="aligncenter size-full wp-image-11555" src="https://www.openspecimen.org/wp-content/uploads/2020/07/image1-1.png" alt="" width="624" height="200" srcset="https://www.openspecimen.org/wp-content/uploads/2020/07/image1-1.png 624w, https://www.openspecimen.org/wp-content/uploads/2020/07/image1-1-300x96.png 300w" sizes="(max-width: 624px) 100vw, 624px" /></p>
<p><span style="font-weight: 400;">MySQL provides the keyring plugin to encrypt the table data files. To encrypt and decrypt database keyring files is used. This file should be kept outside of the database server file system, i.e., on any external hard drive or remote server for more security.</span></p>
<p><span style="font-weight: 400;">While this article is written for MySQL, the same can be achieved with other databases like Oracle. Post encryption, we have not experienced any performance (speed) drop in the OpenSpecimen application. </span></p>
<p>&nbsp;</p>
<p><em><strong>Written by:</strong> <a href="https://www.linkedin.com/in/krishna-waidande-1b9060199/" target="_blank" rel="noopener">Krishna Waidande</a>. Krishna is a System Administrator at OpenSpecimen and manages product deployments, databases and configuration.</em></p>
<p><b>For more details email </b><a href="mailto:contact@krishagni.com"><b>contact@krishagni.com</b></a></p>
<p>&nbsp;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>SpecimenCatalog: Sharing Data with Researchers</title>
		<link>https://www.openspecimen.org/specimen-catalog-biobanking-lims/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 12:09:32 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<category><![CDATA[biobanking]]></category>
		<category><![CDATA[biorepository]]></category>
		<category><![CDATA[biospecimen]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=7152</guid>

					<description><![CDATA[Most biobanks struggle with improving &#8220;utilization ratios&#8221; of their collections. The utilization ratio is the ratio of the specimen collected vs. distributed &#8211; which is critical for a biobank&#8217;s &#8220;sustenance.&#8221; ... <p class="read-more-container"><a title="SpecimenCatalog: Sharing Data with Researchers" class="read-more button" href="https://www.openspecimen.org/specimen-catalog-biobanking-lims/#more-7152" aria-label="More on SpecimenCatalog: Sharing Data with Researchers">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p>Most biobanks struggle with improving &#8220;utilization ratios&#8221; of their collections. The utilization ratio is the ratio of the specimen collected vs. distributed &#8211; which is critical for a biobank&#8217;s &#8220;sustenance.&#8221;</p>
<pre>SpecimenCatalog helps with sharing biospecimen data with researchers.</pre>
<p>It provides an easy-to-use interface for researchers to look for specimens of interest and submit requests. Catalogs can be created based on various conditions such as specimen type, pathological conditions, clinical diagnosis, etc.</p>
<p>The researchers can access each Catalog using its URL. The researchers can choose the desired specimens using various filters, add them to the cart, and place specimen requests. The Request Admins receive notifications for new Requests and can further process them.</p>
<p>The SpecimenCatalog module not only saves time and efforts of both biobank and researchers, but it also takes care of the specimen disposal process after distribution.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-11565" src="https://www.openspecimen.org/wp-content/uploads/2020/02/Screenshot-from-2020-02-24-16-30-53-1024x435-1.png" alt="" width="1024" height="435" srcset="https://www.openspecimen.org/wp-content/uploads/2020/02/Screenshot-from-2020-02-24-16-30-53-1024x435-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2020/02/Screenshot-from-2020-02-24-16-30-53-1024x435-1-300x127.png 300w, https://www.openspecimen.org/wp-content/uploads/2020/02/Screenshot-from-2020-02-24-16-30-53-1024x435-1-768x326.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>.</p>
<h3><span data-preserver-spaces="true">SpecimenCatalog Highlights</span></h3>
<ul>
<li><span data-preserver-spaces="true">Create multiple Catalogs &#8211; based on diseases and research needs</span></li>
<li><span data-preserver-spaces="true">Control access to the Catalog through the login</span></li>
<li><span data-preserver-spaces="true">Manage/Track specimen requests by various researchers</span></li>
<li><span data-preserver-spaces="true">Download reports for the specimen requests</span></li>
<li><span data-preserver-spaces="true">Can be shared with researchers who do not have OpenSpecimen</span></li>
</ul>
<h3><span data-preserver-spaces="true">Request Workflow</span></h3>
<p><span data-preserver-spaces="true">A researcher can shortlist the specimens using the &#8220;easy to use&#8221; catalog user interface and add these specimens to a Cart. Once ready, the research can fill in a &#8220;request form&#8221; customized for this Catalog.</span><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11566" src="https://www.openspecimen.org/wp-content/uploads/2020/02/request_workflow.png" alt="" width="890" height="176" srcset="https://www.openspecimen.org/wp-content/uploads/2020/02/request_workflow.png 890w, https://www.openspecimen.org/wp-content/uploads/2020/02/request_workflow-300x59.png 300w, https://www.openspecimen.org/wp-content/uploads/2020/02/request_workflow-768x152.png 768w" sizes="(max-width: 890px) 100vw, 890px" /></p>
<p><span data-preserver-spaces="true">The Request Admins can review the Request and approve/reject them.</span></p>
<h3><span data-preserver-spaces="true">Uploading Data</span></h3>
<p><span data-preserver-spaces="true">Multiple groups/labs can upload data into the Catalog using the CSV Import feature &#8211; even from groups not using OpenSpecimen.</span></p>
<p><span data-preserver-spaces="true">It is also possible to configure the dataset dictionary with SpecimenCatalog based on the disease and research needs of the institute.</span></p>
<h3><span data-preserver-spaces="true">Demo and More Details</span></h3>
<p><span data-preserver-spaces="true">Email: contact@krishagni.com</span></p>
<p>&nbsp;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Did you know? &#8211; Reordering of custom forms via Collection Protocol settings</title>
		<link>https://www.openspecimen.org/did-you-know-reordering-of-custom-forms-via-collection-protocol-settings/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Thu, 28 Nov 2019 07:13:09 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<category><![CDATA[biobanking]]></category>
		<category><![CDATA[biorepository]]></category>
		<category><![CDATA[biospecimen]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=5527</guid>

					<description><![CDATA[Organizing the forms for data entry can be important for the efficient and speed of data entry.  By default, the order of the forms is based on the order of ... <p class="read-more-container"><a title="Did you know? &#8211; Reordering of custom forms via Collection Protocol settings" class="read-more button" href="https://www.openspecimen.org/did-you-know-reordering-of-custom-forms-via-collection-protocol-settings/#more-5527" aria-label="More on Did you know? &#8211; Reordering of custom forms via Collection Protocol settings">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p>Organizing the forms for data entry can be important for the efficient and speed of data entry.  By default, the order of the forms is based on the order of attaching them. However, this might not be the most ideal way from a data entry point of view.</p>
<p>From v4.3, you can change the order of data entry forms through collection protocol settings.</p>
<p><b>To reorder:</b></p>
<p>Go to Collection Protocol -&gt; Settings -&gt; Forms and drag and drop the forms to reorder them.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11583" src="https://www.openspecimen.org/wp-content/uploads/2019/11/DragForm-1-1024x495-1.png" alt="" width="1024" height="495" srcset="https://www.openspecimen.org/wp-content/uploads/2019/11/DragForm-1-1024x495-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/11/DragForm-1-1024x495-1-300x145.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/11/DragForm-1-1024x495-1-768x371.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p><b>“Save and Next” button:</b></p>
<p>Further to make the data entry simpler, the &#8216;Save and Next&#8217; button on the forms page takes the user to the next form in the list.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11584" src="https://www.openspecimen.org/wp-content/uploads/2019/11/DataEntryPage-1024x471-1.png" alt="" width="1024" height="471" srcset="https://www.openspecimen.org/wp-content/uploads/2019/11/DataEntryPage-1024x471-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/11/DataEntryPage-1024x471-1-300x138.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/11/DataEntryPage-1024x471-1-768x353.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>For more details refer: <a href="https://openspecimen.atlassian.net/wiki/x/IYD0Dw" target="_blank" rel="noopener">https://openspecimen.atlassian.net/wiki/x/IYD0Dw</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New feature in v6.2 &#8211; Custom Form Enhancements</title>
		<link>https://www.openspecimen.org/new-feature-in-v6-2-custom-form-enhancements/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Wed, 06 Nov 2019 09:06:47 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=5282</guid>

					<description><![CDATA[From v6.2 below enhancements are made to simplify the forms UI and make it user-friendly.   Ability to search forms by additional filters:  Earlier the forms were searchable only by name. ... <p class="read-more-container"><a title="New feature in v6.2 &#8211; Custom Form Enhancements" class="read-more button" href="https://www.openspecimen.org/new-feature-in-v6-2-custom-form-enhancements/#more-5282" aria-label="More on New feature in v6.2 &#8211; Custom Form Enhancements">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">From v6.2 below enhancements are made to simplify the forms UI and make it user-friendly.  </span></p>
<p><b>Ability to search forms by additional filters: </b></p>
<p><span style="font-weight: 400;">Earlier the forms were searchable only by name. It was difficult to find out which CP or level the forms were attached to. From v6.2, two new search filters are added:</span></p>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">Collection Protocol title</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Attachment level</span></li>
</ol>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11590" src="https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-08-26-at-7.57.15-PM-1024x394-1.png" alt="" width="1024" height="394" srcset="https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-08-26-at-7.57.15-PM-1024x394-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-08-26-at-7.57.15-PM-1024x394-1-300x115.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-08-26-at-7.57.15-PM-1024x394-1-768x296.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p><b>Better UI to attach forms: </b></p>
<p><span style="font-weight: 400;">Initially, the forms attachment levels were primarily CP driven. However, the UI to attach forms was confusing since we now support many non-CP related levels (e.g. Container, Site, DPs, etc). </span></p>
<p><span style="font-weight: 400;">This is resolved in v6.2 with a much cleaner UI to attach forms.</span></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11591" src="https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-09-20-at-3.58.49-PM-1024x194-1.png" alt="" width="1024" height="194" srcset="https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-09-20-at-3.58.49-PM-1024x194-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-09-20-at-3.58.49-PM-1024x194-1-300x57.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-2019-09-20-at-3.58.49-PM-1024x194-1-768x146.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p><b>Ability to edit the multi-record option: </b></p>
<p><span style="font-weight: 400;">Sometimes there might be protocol changes and the user might need to switch from single to multiple record collection or vice versa. Earlier it was not possible to edit the multi-record option. From v6.2, the user can edit it just by checking/unchecking the checkbox next to the multi-record option. </span></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11592" src="https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-from-2019-08-07-15-57-01-1024x235-1.png" alt="" width="1024" height="235" srcset="https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-from-2019-08-07-15-57-01-1024x235-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-from-2019-08-07-15-57-01-1024x235-1-300x69.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/11/Screenshot-from-2019-08-07-15-57-01-1024x235-1-768x176.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p><strong>For more details refer: </strong><a href="https://openspecimen.atlassian.net/wiki/x/AQD1Dw" target="_blank" rel="noopener"><span style="font-weight: 400;">https://openspecimen.atlassian.net/wiki/x/AQD1Dw</span></a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New feature in v6.2 &#8211; Container Transfer Event</title>
		<link>https://www.openspecimen.org/new-feature-in-v6-2-container-transfer-event/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Mon, 21 Oct 2019 09:41:19 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=5201</guid>

					<description><![CDATA[When a box (or any container) is transferred from one location to another, it was not possible to track the details of transfer like &#8211; Who transferred the container Date ... <p class="read-more-container"><a title="New feature in v6.2 &#8211; Container Transfer Event" class="read-more button" href="https://www.openspecimen.org/new-feature-in-v6-2-container-transfer-event/#more-5201" aria-label="More on New feature in v6.2 &#8211; Container Transfer Event">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p>When a box (or any container) is transferred from one location to another, it was not possible to track the details of transfer like &#8211;</p>
<ul>
<li>Who transferred the container</li>
<li>Date and time of transfer</li>
<li>Reason for transfer</li>
<li>Generate reports of such transfers</li>
<li>See the transfer details in the specimen level</li>
</ul>
<p>Starting from v6.2, the containers can be transferred by clicking the “Transfer” button present on the container overview page. Once the transfer is done the system will log a “transfer event” at the container level as well as for the specimens stored in that container.</p>
<p><strong>Transfer Event at container level:</strong></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11631" src="https://www.openspecimen.org/wp-content/uploads/2019/10/ContainerTrans-1024x281-1.png" alt="" width="1024" height="281" srcset="https://www.openspecimen.org/wp-content/uploads/2019/10/ContainerTrans-1024x281-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/10/ContainerTrans-1024x281-1-300x82.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/10/ContainerTrans-1024x281-1-768x211.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p><strong>Container Transfer Event at specimen level:</strong></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11632" src="https://www.openspecimen.org/wp-content/uploads/2019/10/SpecTrans-1024x420-1.png" alt="" width="1024" height="420" srcset="https://www.openspecimen.org/wp-content/uploads/2019/10/SpecTrans-1024x420-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/10/SpecTrans-1024x420-1-300x123.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/10/SpecTrans-1024x420-1-768x315.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p><strong>For more details refer:</strong> <a href="https://openspecimen.atlassian.net/wiki/x/54DIBg" target="_blank" rel="nofollow noopener">https://openspecimen.atlassian.net/wiki/x/54DIBg</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New feature in v6.2 &#8211; Clinician Role</title>
		<link>https://www.openspecimen.org/new-feature-in-v6-2-clinician-role/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Fri, 18 Oct 2019 05:30:16 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=5195</guid>

					<description><![CDATA[Clinical staff at the hospitals are responsible for the collection of participant data and primary specimens. They are not concerned about other biobank workflows e.g. specimen processing, storage or distribution. ... <p class="read-more-container"><a title="New feature in v6.2 &#8211; Clinician Role" class="read-more button" href="https://www.openspecimen.org/new-feature-in-v6-2-clinician-role/#more-5195" aria-label="More on New feature in v6.2 &#8211; Clinician Role">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p>Clinical staff at the hospitals are responsible for the collection of participant data and primary specimens. They are not concerned about other biobank workflows e.g. specimen processing, storage or distribution.</p>
<p>OpenSpecimen has introduced a new default role “Clinician” for such users. Clinician users can only perform participant registration, ship specimens, and accession primary specimens.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11629" src="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-09-23-14-02-15-1024x397-1.png" alt="" width="1024" height="397" srcset="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-09-23-14-02-15-1024x397-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-09-23-14-02-15-1024x397-1-300x116.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-09-23-14-02-15-1024x397-1-768x298.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>To know more details: <a href="https://openspecimen.atlassian.net/wiki/x/X4CB" target="_blank" rel="nofollow noopener">https://openspecimen.atlassian.net/wiki/x/X4CB</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New feature in v6.2 &#8211; Collection Protocol Groups</title>
		<link>https://www.openspecimen.org/new-feature-in-v6-2-collection-protocol-groups/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Wed, 16 Oct 2019 11:11:15 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=5176</guid>

					<description><![CDATA[Often, the same set of forms and UI screen designs are used for multiple CPs within a site. The problems with this are: Not able to query across multiple CPs ... <p class="read-more-container"><a title="New feature in v6.2 &#8211; Collection Protocol Groups" class="read-more button" href="https://www.openspecimen.org/new-feature-in-v6-2-collection-protocol-groups/#more-5176" aria-label="More on New feature in v6.2 &#8211; Collection Protocol Groups">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p>Often, the same set of forms and UI screen designs are used for multiple CPs within a site. The problems with this are:</p>
<ol>
<li>Not able to query across multiple CPs using custom forms</li>
<li>Cumbersome to manage updates to JSON workflows in multiple CPs</li>
</ol>
<p>From v6.2, OpenSpecimen allows creating “Collection Protocol Groups (CPG)” for easy maintenance of such protocols. This feature allows the user to-</p>
<ul>
<li>Have the same JSON configuration for all the collection protocols in a CPG</li>
<li>Add custom forms or custom fields to all the collection protocols in a CPG in one-go</li>
<li>Query custom form data from multiple protocols within a CPG</li>
</ul>
<div class="lightbox-wrapper"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11626" src="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-2019-09-24-at-1.20.28-PM-1024x269-1.png" alt="" width="1024" height="269" srcset="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-2019-09-24-at-1.20.28-PM-1024x269-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-2019-09-24-at-1.20.28-PM-1024x269-1-300x79.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-2019-09-24-at-1.20.28-PM-1024x269-1-768x202.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></div>
<div></div>
<div></div>
<div><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11627" src="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-16-10-12-23-1024x361-1.png" alt="" width="1024" height="361" srcset="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-16-10-12-23-1024x361-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-16-10-12-23-1024x361-1-300x106.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-16-10-12-23-1024x361-1-768x271.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></div>
<div>
<p><strong>Future enhancements of CPG will include:</strong></p>
<ol>
<li>Reserving containers (racks/boxes) based on CPGs rather than CPs</li>
<li>Assigning user roles for a CPG</li>
</ol>
<p><strong>For more details refer:</strong> <a href="https://openspecimen.atlassian.net/wiki/x/NQBcGw" target="_blank" rel="nofollow noopener">https://openspecimen.atlassian.net/wiki/x/NQBcGw</a></p>
</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New feature in v6.2 &#8211; Impersonate Users</title>
		<link>https://www.openspecimen.org/new-feature-in-v6-2-impersonate-users/</link>
		
		<dc:creator><![CDATA[Sharvari Gokhale]]></dc:creator>
		<pubDate>Mon, 14 Oct 2019 16:19:01 +0000</pubDate>
				<category><![CDATA[Product Features]]></category>
		<guid isPermaLink="false">https://www.openspecimen.org/?p=5133</guid>

					<description><![CDATA[From v6.2, Super administrators can “Impersonate” other users. For example, if a user complains of an issue specific to their role, super administrator can impersonate as that user and debug ... <p class="read-more-container"><a title="New feature in v6.2 &#8211; Impersonate Users" class="read-more button" href="https://www.openspecimen.org/new-feature-in-v6-2-impersonate-users/#more-5133" aria-label="More on New feature in v6.2 &#8211; Impersonate Users">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<p>From v6.2, Super administrators can “Impersonate” other users. For example, if a user complains of an issue specific to their role, super administrator can impersonate as that user and debug it. Any action performed during impersonation is audited under the user impersonated.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11624" src="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-14-20-54-13-1024x274-1.png" alt="" width="1024" height="274" srcset="https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-14-20-54-13-1024x274-1.png 1024w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-14-20-54-13-1024x274-1-300x80.png 300w, https://www.openspecimen.org/wp-content/uploads/2019/10/Screenshot-from-2019-10-14-20-54-13-1024x274-1-768x206.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>For more information refer: <a href="https://openspecimen.atlassian.net/wiki/x/X4CB" target="_blank" rel="nofollow noopener">https://openspecimen.atlassian.net/wiki/x/X4CB</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>OpenSpecimen &#8211; REDCap Integration</title>
		<link>https://www.openspecimen.org/redcap/</link>
		
		<dc:creator><![CDATA[Srikanth Adiga]]></dc:creator>
		<pubDate>Tue, 27 Jun 2017 03:57:50 +0000</pubDate>
				<category><![CDATA[Implementation]]></category>
		<category><![CDATA[OpenSpecimen Highlights]]></category>
		<category><![CDATA[Product Features]]></category>
		<category><![CDATA[biobanking]]></category>
		<category><![CDATA[biorepository]]></category>
		<category><![CDATA[biospecimen]]></category>
		<guid isPermaLink="false">http://www.openspecimen.org/?p=1784</guid>

					<description><![CDATA[OpenSpecimen can be integrated with REDCap (or other EDCs like OpenClinica) to eliminate manual data entry and query data across the two systems. The plugin is currently used by many ... <p class="read-more-container"><a title="OpenSpecimen &#8211; REDCap Integration" class="read-more button" href="https://www.openspecimen.org/redcap/#more-1784" aria-label="More on OpenSpecimen &#8211; REDCap Integration">Read more</a></p>]]></description>
										<content:encoded><![CDATA[<div>
<p><span style="font-weight: 400;">OpenSpecimen can be integrated with </span><a href="https://www.project-redcap.org/" target="_blank" rel="noopener"><span style="font-weight: 400;">REDCap</span></a><span style="font-weight: 400;"> (or other EDCs like </span><a href="http://www.openclinica.com/" target="_blank" rel="noopener"><span style="font-weight: 400;">OpenClinica</span></a><span style="font-weight: 400;">) to eliminate manual data entry and query data across the two systems. The plugin is currently used by many customers including Washington University, Columbia University, Telethon Kids (Perth), and University of British Columbia (Vancouver). </span></p>
<p><span style="font-weight: 400;">The plugin performs the one-way data synchronization from REDCap to OpenSpecimen. The data pulled includes all the instrument information (i.e. CRFs) into OpenSpecimen Forms. This data can be used to populate participants, visits, and any other clinical data.</span></p>
<p><span style="font-weight: 400;"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11596" src="https://www.openspecimen.org/wp-content/uploads/2017/06/Redcap-1-1.jpg" alt="" width="512" height="288" srcset="https://www.openspecimen.org/wp-content/uploads/2017/06/Redcap-1-1.jpg 512w, https://www.openspecimen.org/wp-content/uploads/2017/06/Redcap-1-1-300x169.jpg 300w" sizes="(max-width: 512px) 100vw, 512px" /></span></p>
</div>
<div>
<h2><span style="font-weight: 400;">Benefits</span></h2>
<ol>
<li style="font-weight: 400;"><b>Productivity:</b><span style="font-weight: 400;"> When a subject (and visit) is created in REDCap, the subject is automatically created in OpenSpecimen. </span></li>
<li style="font-weight: 400;"><b>Data Accuracy:</b><span style="font-weight: 400;"> Automated data synchronization will avoid human data entry errors. </span></li>
<li style="font-weight: 400;"><b>Integrated Reporting:</b><span style="font-weight: 400;"> Researchers can find specimens using integrated queries across datasets from OpenSpecimen and REDCap. </span></li>
<li style="font-weight: 400;"><b>Specimen Catalog:</b> Data fetched from REDCap can be shared with researchers using the SpecimenCatalog module.</li>
</ol>
</div>
<div>
<div>
<h2><span style="font-weight: 400;">Customer Use Cases</span></h2>
<h3>Telethon Kids Institute</h3>
<p><span style="font-weight: 400;">Telethon Kids Institute conducts studies for pregnant women, their partners, and children as part of the </span><a href="https://originsproject.telethonkids.org.au/" target="_blank" rel="noopener"><span style="font-weight: 400;">ORIGIN</span></a><span style="font-weight: 400;"> study. The ORIGINS Project is the largest study of its kind in Australia, following 10,000 families over the next decade to improve child and adult health.</span></p>
<p><span style="font-weight: 400;">The participants are registered in REDCap and their details like contact information of the participant, consents, survey questionnaire are collected in a longitudinal study. The longitudinal visits include 20 weeks, 28 weeks, 32 weeks, 40 weeks or childbirth, 2-month visit, etc.</span></p>
<p><span style="font-weight: 400;">Participants and visits are automatically synced to OpenSpecimen on a nightly basis as they are created in REDCap. The events from REDCap can be mapped to CP events in OpenSpecimen. The sample collection for such visits is then done in OpenSpecimen.</span></p>
<h3><b>Columbia University Medical Center</b></h3>
<p><span style="font-weight: 400;">Columbia University Medical Center is using OpenSpecimen and REDCap for a COVID-19 study. Participants are synced to OpenSpecimen as they are created in REDCap along with demographics and consent details. The lab staff then collects biospecimen information directly in OpenSpecimen.</span></p>
</div>
</div>
<div>
<h2>Video (10 mins)</h2>
</div>
<div>
<p><iframe title="OpenSpecimen-REDCap Integration Demo" width="1200" height="900" src="https://www.youtube.com/embed/l-5G0zg_vLM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<h2>About REDCap</h2>
<p>REDCap is a secure web application for building and managing online surveys and databases. While REDCap can be used to collect virtually any type of data (including 21 CFR Part 11, FISMA, and HIPAA-compliant environments), it is specifically geared to support online or offline data capture for research studies and operations. The REDCap Consortium, a vast support network of collaborators, is composed of thousands of active institutional partners in over one hundred countries who utilize and support REDCap in various ways.</p>
</div>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
