Skip to content

Commit 96c30b2

Browse files
authored
Merge pull request #121 from ImagingDataCommons/idc_v21
Pathology conversion status. Final v21 commit
2 parents d122dcb + 1d70ac8 commit 96c30b2

10 files changed

+559
-190
lines changed

bq/generate_tables_and_views/all_joined.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def create_all_joined(client):
161161
view = bigquery.Table(view_id)
162162
view.view_query = f"""
163163
-- SELECT af.*, ac.source, ac.Class, ac.Access, ac.metadata_sunset, ac.dev_bucket, ac.pub_gcs_bucket, ac.pub_aws_bucket
164-
SELECT af.*, ac.source, ac.Type, ac.Access, ac.metadata_sunset, ac.pub_gcs_bucket, ac.pub_aws_bucket
164+
SELECT af.*, ac.source, ac.Type, ac.Access, ac.metadata_sunset, ac.dev_bucket, ac.pub_gcs_bucket, ac.pub_aws_bucket
165165
FROM `{settings.DEV_PROJECT}.{settings.BQ_DEV_INT_DATASET}.all_flattened` af
166166
JOIN `{settings.DEV_PROJECT}.{settings.BQ_DEV_INT_DATASET}.all_collections` ac
167167
ON af.source_doi = ac.source_doi

bq/generate_tables_and_views/idc_source_data_files.py

Lines changed: 0 additions & 69 deletions
This file was deleted.

bq/release_bq_data/publish_idc_pdp_staging_datasets.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
parser.add_argument('--version', default=settings.CURRENT_VERSION, help='IDC version number')
2929
parser.add_argument('--src_project', default="idc-pdp-staging", help='Project from which tables are copied')
3030
parser.add_argument('--trg_project', default="nci-idc-bigquery-data", help='Project to which tables are copied')
31-
# parser.add_argument('--pub_project', default="bigquery-public-data", help='Project where public datasets live')
3231
parser.add_argument('--pub_project', default="nci-idc-bigquery-data", help='Project where public datasets live')
3332
parser.add_argument('--table_ids', default={}, help="Copy all tables/views unless this is non-empty.")
3433
parser.add_argument('--clinical_table_ids', default={}, help="Copy all tables/views unless this is non-empty")

0 commit comments

Comments
 (0)