Skip to content

Commit

Permalink
~More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
BillClifford committed Jun 28, 2023
1 parent 702b120 commit 338d9e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from google.cloud import bigquery

auxiliary_metadata_schema = [
bigquery.SchemaField('tcia_api_collection_id', 'STRING', mode='NULLABLE', description='Collection ID as accepted by TCIA APIs'),
bigquery.SchemaField('tcia_api_collection_id', 'STRING', mode='NULLABLE', description='Collection ID as accepted by TCIA APIs. Or in the style of TCIA APIs'),
bigquery.SchemaField('idc_webapp_collection_id', 'STRING', mode='NULLABLE', description='Collection ID as accepted by the IDC webapp'),
bigquery.SchemaField('collection_id', 'STRING', mode='NULLABLE', description='Collection ID as accepted by the IDC webapp. Duplicate of idc_webapp_collection_id'),
bigquery.SchemaField('collection_timestamp', 'DATETIME', mode='NULLABLE', description='Revision timestamp'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--bqtable_name', default='original_collections_metadata', help='BQ table name')
parser.add_argument('--access', default='Public', help="Generate excluded_original_collections_metadata if True")
parser.add_argument('--access', default='Public', help="Generate original_collections_metadata if True; (deprecated)generate a table of excluded collections if false (deprecated)")
parser.add_argument('--use_cached_metadata', default=False)
parser.add_argument('--cached_metadata_file', default='cached_included_metadata.json', help='Where to cache metadata')

Expand Down

0 comments on commit 338d9e4

Please sign in to comment.