Skip to content

Commit

Permalink
Merge pull request #2969 from sparc-request/ie-update_epic_questions
Browse files Browse the repository at this point in the history
updated question as requested
  • Loading branch information
amcates committed Sep 23, 2022
2 parents cd96a36 + 8a94819 commit c45b5d0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/constants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ study_type_questions_version_2: ["1. Does your study have a Certificate of Confi
"4. Do you wish to remove the 'Research: Active' indicator in the Patient Header for your study participants?*",
"5. Do you need to restrict the sending of study related results, such as laboratory and radiology results, to a participants MyChart?*"]

study_type_questions_version_3: ["1. Does your Informed Consent provide information to the participant specifically stating their study participation will be kept private from anyone outside the research team? (i.e. your study has a Certificate of Confidentiality or involves sensitive data collection which requires de-identification of the research participant in Epic.)",
study_type_questions_version_3: ["1. Does your Informed Consent contain IRB standard language describing the use of an <a href='https://research.musc.edu/resources/ori/irb/forms/consent-language/certificate-of-confidentiality/alias'>Alias Medical Record</a>? If Yes, The PI is responsible for consulting with the Epic Research Team to establish the process for creating alias identities (de-identification) for your study participants.",
'2. Does your study require a higher level of privacy protection for the participants? (Your study needs "break the glass" functionality in Epic because it is collecting sensitive data, such as HIV/sexually transmitted disease, sexual practice/attitudes, illegal substance, etc., which needs higher privacy protection, yet not complete de-identification of the study participant.)',
"3. Is it appropriate for study team members to receive Epic InBasket notifications if research participants in this study are hospitalized or admitted to the Emergency Department?",
'4. Is it appropriate to display the pink "Research: Active" indicator in the Patient Header for all study participants?',
Expand Down
2 changes: 1 addition & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2022_09_07_153451) do
ActiveRecord::Schema.define(version: 2022_09_19_141351) do

create_table "admin_rates", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci", force: :cascade do |t|
t.bigint "line_item_id"
Expand Down
8 changes: 8 additions & 0 deletions lib/tasks/update_study_type_question_text.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace :update_study_type_question_text do
desc "TODO"
task change_question_task: :environment do
@stq = StudyTypeQuestion.where(question: "1. Does your Informed Consent provide information to the participant specifically stating their study participation will be kept private from anyone outside the research team? (i.e. your study has a Certificate of Confidentiality or involves sensitive data collection which requires de-identification of the research participant in Epic.)")
@stq.update(question: "1. Does your Informed Consent contain IRB standard language describing the use of an <a href='https://research.musc.edu/resources/ori/irb/forms/consent-language/certificate-of-confidentiality/alias'>Alias Medical Record</a>? If Yes, The PI is responsible for consulting with the Epic Research Team to establish the process for creating alias identities (de-identification) for your study participants.")
end

end

0 comments on commit c45b5d0

Please sign in to comment.