dcicutils 8.14.0.1b20__py3-none-any.whl → 8.14.0.1b21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dcicutils/scripts/update_portal_object.py +6 -12
- {dcicutils-8.14.0.1b20.dist-info → dcicutils-8.14.0.1b21.dist-info}/METADATA +1 -1
- {dcicutils-8.14.0.1b20.dist-info → dcicutils-8.14.0.1b21.dist-info}/RECORD +6 -6
- {dcicutils-8.14.0.1b20.dist-info → dcicutils-8.14.0.1b21.dist-info}/LICENSE.txt +0 -0
- {dcicutils-8.14.0.1b20.dist-info → dcicutils-8.14.0.1b21.dist-info}/WHEEL +0 -0
- {dcicutils-8.14.0.1b20.dist-info → dcicutils-8.14.0.1b21.dist-info}/entry_points.txt +0 -0
@@ -2,16 +2,9 @@
|
|
2
2
|
# Command-line utility to update (post, patch, upsert) portal objects for SMaHT/CGAP/Fourfront.
|
3
3
|
# ------------------------------------------------------------------------------------------------------
|
4
4
|
# Example commands:
|
5
|
-
#
|
6
|
-
# update-portal-object --
|
7
|
-
# update-portal-object --
|
8
|
-
# update-portal-object --upsert {json-file | directory-with-json-files}
|
9
|
-
# update-portal-object --patch {json-file | directory-with-json-files}
|
10
|
-
#
|
11
|
-
# The specified json-file or file withing directory-with-jaon-files must be JSON containing either
|
12
|
-
# a list of objects, which which case the file name for the target schema name, or if not, then
|
13
|
-
# the --schema option must be used to specified the target schema; or the JSON must be a dictionary
|
14
|
-
# of schema names, where the value of each is a list of objects for that schema.
|
5
|
+
# update-portal-object --post file_format.json
|
6
|
+
# update-portal-object --upsert directory-with-schema-named-dot-json-files
|
7
|
+
# update-portal-object --patch file-not-named-for-schema-name.json --schema UnalignedReads
|
15
8
|
# --------------------------------------------------------------------------------------------------
|
16
9
|
|
17
10
|
import argparse
|
@@ -471,7 +464,8 @@ def _load_data(portal: Portal, load: str, ini_file: str, explicit_schema_name: O
|
|
471
464
|
# view_name: \\\'22813a02-906b-4b60-b2b2-4afaea24aa28\\\', subpath: (), traversed: (), root:
|
472
465
|
# <encoded.root.SMAHTRoot object at 0x136d41460>, vroot: <encoded.root.SMAHTRoot object at 0x136d41460>, vroot_path: ()"}\' # noqa
|
473
466
|
#
|
474
|
-
if (item_type := re.search(r"https?://.*/(.*)\?skip_indexing=.*", item)) and
|
467
|
+
if ((item_type := re.search(r"https?://.*/(.*)\?skip_indexing=.*", item)) and
|
468
|
+
(len(item_type.groups()) == 1)): # noqa
|
475
469
|
item_type = to_snake_case(item_type.group(1))
|
476
470
|
identifying_value = f"/{to_camel_case(item_type)}{identifying_value}"
|
477
471
|
unresolved_link_error_message_prefix = "Unable to resolve link:"
|
@@ -634,7 +628,7 @@ def _load_data(portal: Portal, load: str, ini_file: str, explicit_schema_name: O
|
|
634
628
|
_print(f"Total items loaded: {loadxl_total_item_count // 2}" # TODO: straightend out this arithmetic
|
635
629
|
f"{f' (errors: {loadxl_total_error_count})' if loadxl_total_error_count else ''}")
|
636
630
|
for item in sorted(loadxl_summary.keys()):
|
637
|
-
_print(f"▷ {to_camel_case(item)}: {loadxl_summary[item]
|
631
|
+
_print(f"▷ {to_camel_case(item)}: {loadxl_summary[item]}")
|
638
632
|
if loadxl_unresolved:
|
639
633
|
_print("✗ Unresolved references:")
|
640
634
|
for item in loadxl_unresolved:
|
@@ -60,7 +60,7 @@ dcicutils/s3_utils.py,sha256=h2B9ftOo-kxqfiKth5ZDC_cAUFy1Pbu7BrVanFnE5Iw,28839
|
|
60
60
|
dcicutils/schema_utils.py,sha256=GmRm-XqZKJ6qine16SQF1txcby9WougDav_sYmKNs9E,12400
|
61
61
|
dcicutils/scripts/publish_to_pypi.py,sha256=sMd4WASQGlxlh7uLrt2eGkFRXYgONVmvIg8mClMS5RQ,13903
|
62
62
|
dcicutils/scripts/run_license_checker.py,sha256=z2keYnRDZsHQbTeo1XORAXSXNJK5axVzL5LjiNqZ7jE,4184
|
63
|
-
dcicutils/scripts/update_portal_object.py,sha256=
|
63
|
+
dcicutils/scripts/update_portal_object.py,sha256=_Wk9UYcT4XQKQQoqyTmiNEEh0ttY3TG1vMATsHr8W2Y,39661
|
64
64
|
dcicutils/scripts/view_portal_object.py,sha256=lcgXWH9ooVf7tJDIRnoFGOgT0wYLGhiJlJW3a9w6A_c,36983
|
65
65
|
dcicutils/secrets_utils.py,sha256=8dppXAsiHhJzI6NmOcvJV5ldvKkQZzh3Fl-cb8Wm7MI,19745
|
66
66
|
dcicutils/sheet_utils.py,sha256=VlmzteONW5VF_Q4vo0yA5vesz1ViUah1MZ_yA1rwZ0M,33629
|
@@ -75,8 +75,8 @@ dcicutils/trace_utils.py,sha256=g8kwV4ebEy5kXW6oOrEAUsurBcCROvwtZqz9fczsGRE,1769
|
|
75
75
|
dcicutils/validation_utils.py,sha256=cMZIU2cY98FYtzK52z5WUYck7urH6JcqOuz9jkXpqzg,14797
|
76
76
|
dcicutils/variant_utils.py,sha256=2H9azNx3xAj-MySg-uZ2SFqbWs4kZvf61JnK6b-h4Qw,4343
|
77
77
|
dcicutils/zip_utils.py,sha256=_Y9EmL3D2dUZhxucxHvrtmmlbZmK4FpSsHEb7rGSJLU,3265
|
78
|
-
dcicutils-8.14.0.
|
79
|
-
dcicutils-8.14.0.
|
80
|
-
dcicutils-8.14.0.
|
81
|
-
dcicutils-8.14.0.
|
82
|
-
dcicutils-8.14.0.
|
78
|
+
dcicutils-8.14.0.1b21.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
|
79
|
+
dcicutils-8.14.0.1b21.dist-info/METADATA,sha256=dBs3CAErEqR7h0pLE7K9CZKVJw5FOcSk1JCuZo7ZkZg,3440
|
80
|
+
dcicutils-8.14.0.1b21.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
81
|
+
dcicutils-8.14.0.1b21.dist-info/entry_points.txt,sha256=W6kEWdUJk9tQ4myAgpehPdebcwvCAZ7UgB-wyPgDUMg,335
|
82
|
+
dcicutils-8.14.0.1b21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|