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
gh actions script is modified by changing the papermill output
notebook name, and output notebooks are no longer checked
for errors as there is no catch all command anymore,
if papermill fails, so essentially relying on papermill
for raising exceptions.
preprocessing script now adds a line describing the action
it took whenever something is injected
cell.source=cell.source.replace('auth.authenticate_user()', '#while testing, the authentication is handled by using application default credentials /n #auth.authenticate_user()')
16
16
cell.source=cell.source.replace('REPLACE THIS TEXT WITH YOUR QUERY!', query1)
17
17
cell.source=cell.source.replace('# write the selection criteria under this line!', query2)
query1='SELECT DISTINCT collection_tumorLocation FROM `bigquery-public-data.idc_current.dicom_all` 'if'part2'infile_nameelse''
34
-
query2='MODALITY=\'MR\' AND collection_tumorLocation=\'Lung\''if'part2'infile_nameelse''
32
+
project_id='idc-external-025'
33
+
query1='#this query is injected for testing /n SELECT DISTINCT collection_tumorLocation FROM `bigquery-public-data.idc_current.dicom_all` 'if'part2'infile_nameelse''
34
+
query2='#this query is injected for testing /n MODALITY=\'MR\' AND collection_tumorLocation=\'Lung\''if'part2'infile_nameelse''
0 commit comments