You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(glue("{now(timeOnly = T)}: extracting release status for {selected_cohort} {release_version}-{release_type} from SOR column '{clinical_column}'..."))
160
167
}
161
168
162
-
# get the list of retracted patient
169
+
# get the lists of retracted patient and samples
163
170
if (verbose) {
164
-
print(glue("{now(timeOnly = T)}: loading retracted patients ({syn_id_retraction}) for the release..."))
171
+
print(glue("{now(timeOnly = T)}: loading retracted patients/samples ({syn_id_retraction}) for the release..."))
165
172
}
166
-
retracted_table<- synTableQuery(glue("SELECT patient_id FROM {syn_id_retraction} WHERE cohort like '%{selected_cohort}%'"))$asDataFrame()
167
-
retracted_pt_list<-retracted_table$patient_id
173
+
retracted_table<- synTableQuery(glue("SELECT * FROM {syn_id_retraction} WHERE cohort like '%{selected_cohort}%'"))$asDataFrame()
0 commit comments