-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into B2AI-541
Showing
2 changed files
with
86 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,75 @@ | ||
import streamlit as st | ||
from tabs.utils import coming_soon_message | ||
|
||
def data_governance_page(tab_name): | ||
coming_soon_message(tab_name) | ||
|
||
st.write( | ||
""" | ||
Accessing the dataset requires several steps, through registered access governance, including:<br> | ||
<ul> | ||
<li>Registration with confirmation of identity</li> | ||
<li>Signing of the Bridge2AI-Voice Registered Access Agreement (data-use agreement) stipulating conditions of use for the data</li> | ||
</ul> | ||
""", unsafe_allow_html=True) | ||
|
||
st.write( | ||
"""[License](https://b2ai-voice.org/wp-content/uploads/2024/11/B2AI-Voice_Registered_Access_Data_Agreement_v20241119.pdf)""", unsafe_allow_html=False) | ||
|
||
st.header("Oversight") | ||
|
||
with st.expander('''**Has the clinical study has been reviewed and approved by at least one human subjects’ protection review board?**''', expanded=False): | ||
st.write('''Submitted, approved by USF Single IRB and subsites IRB through the Single IRB Process''') | ||
|
||
with st.expander('''**Is this clinical study for a drug product?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
with st.expander('''**Is this clinical study for a medical device?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
with st.expander('''**Was a data monitoring committee appointed for this study?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
st.header("De-Identification Levels") | ||
|
||
st.write("""Level of de-identification from this dataset Identifiable information (under HIPAA and under the Common Rule) as well as data considered as sensitive have been removed from this dataset.""", unsafe_allow_html=False) | ||
|
||
with st.expander('''**Does this dataset remove direct identifiers?**''', expanded=False): | ||
st.write('''Yes''') | ||
|
||
with st.expander('''**Does this dataset apply the HIPAA de-identification rules?**''', expanded=False): | ||
st.write('''Yes''') | ||
|
||
with st.expander('''**Does this dataset rebase and/or replace dates by integers?**''', expanded=False): | ||
st.write('''Yes''') | ||
|
||
with st.expander('''**Does this dataset remove narrative text fields?**''', expanded=False): | ||
st.write('''Yes''') | ||
|
||
with st.expander('''**Does this dataset achieve K-anonymization (k>=2)?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
st.subheader("De-identification Details") | ||
|
||
st.write("""All direct identifiers were removed, as these would reveal the identity of the research participant. These include name, civic address, and social security numbers. Indirect identifiers were removed where these created a significant risk of causing participant re-identification, for example through their combination with other public data available on social media, in government registries, or elsewhere. These include select geographic or demographic identifiers, as well as some information about household composition or cultural identity. Non-identifying elements of data that revealed highly sensitive information, such as information about household income, mental health status, traumatic life experiences, and the like were also removed. All raw voice data was removed, as this data has the potential to cause to individual re-identification or to be used for illicit or unauthorized purposes. """, unsafe_allow_html=False) | ||
|
||
st.header("Consent") | ||
|
||
st.subheader("Consent Type", divider="violet") | ||
|
||
with st.expander('''**Does this dataset allow only the non-commercial use of the data?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
with st.expander('''**Does this dataset allow only the use of the data in a specific geographic location?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
with st.expander('''**Does this dataset allow only the use of the data for a specific type of research?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
with st.expander('''**Does this dataset allow only the use of the data for genetic research?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
with st.expander('''**Does this dataset allow only the use of the data for research that does not involve the development of methods or algorithms?**''', expanded=False): | ||
st.write('''No''') | ||
|
||
st.subheader("Consent Details", divider="violet") | ||
|
||
st.write("""Research data that does not contain your direct identifiers will be shared with external researchers for future research through a secure database. Data that poses a low risk of causing individual re-identification will be shared in registered access with the general public. Data that would pose a heightened risk of re-identification if shared in full open access will be shared through a controlled access mechanism with authorized researchers.""", unsafe_allow_html=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters