nmdc-runtime 1.10.0__tar.gz → 2.0.1__tar.gz
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.
Potentially problematic release.
This version of nmdc-runtime might be problematic. Click here for more details.
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.env.example +5 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/workflows/python-app.yml +3 -0
- {nmdc_runtime-1.10.0/nmdc_runtime.egg-info → nmdc_runtime-2.0.1}/PKG-INFO +1 -1
- nmdc_runtime-1.10.0/demo/metadata_migration/notebooks/migrate_10_5_6_to_10_8_0.ipynb → nmdc_runtime-2.0.1/demo/metadata_migration/notebooks/migrate_10_4_0_to_10_9_1.ipynb +2 -2
- nmdc_runtime-1.10.0/demo/metadata_migration/notebooks/migrate_10_8_0_to_11_0_0.ipynb → nmdc_runtime-2.0.1/demo/metadata_migration/notebooks/migrate_10_9_1_to_11_0_0.ipynb +97 -47
- nmdc_runtime-2.0.1/demo/metadata_migration/notebooks/migrate_11_0_0_to_11_0_1.ipynb +50 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/nb/bulk_validation_referential_integrity_check.ipynb +81 -37
- nmdc_runtime-2.0.1/metadata-translation/notebooks/data/changesheet-array-item-nested-attributes.tsv +6 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-update-pi-websites.tsv +2 -2
- nmdc_runtime-2.0.1/metadata-translation/notebooks/data/changesheet-without-separator3.tsv +21 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/core/auth.py +23 -4
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/db/mongo.py +25 -2
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/find.py +59 -27
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/nmdcschema.py +9 -7
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/queries.py +6 -3
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/users.py +3 -2
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/util.py +13 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/workflows.py +23 -12
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/main.py +22 -24
- nmdc_runtime-2.0.1/nmdc_runtime/api/v1/router.py +3 -0
- nmdc_runtime-2.0.1/nmdc_runtime/minter/config.py +112 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/export/ncbi_xml.py +29 -25
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/export/ncbi_xml_utils.py +5 -5
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/export/study_metadata.py +3 -1
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/graphs.py +71 -15
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/ops.py +131 -42
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/repository.py +16 -4
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/gold_translator.py +112 -43
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/neon_benthic_translator.py +58 -31
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/neon_soil_translator.py +71 -45
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/neon_surface_water_translator.py +61 -32
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/neon_utils.py +19 -6
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/submission_portal_translator.py +67 -36
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/test.Dockerfile +1 -1
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1/nmdc_runtime.egg-info}/PKG-INFO +1 -1
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime.egg-info/SOURCES.txt +5 -11
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/requirements/dev.txt +27 -26
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/requirements/main.in +1 -1
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/requirements/main.txt +134 -155
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/files/nmdc_bsm-12-7mysck21.json +18 -8
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/files/nmdc_sty-11-pzmd0x14.json +16 -8
- nmdc_runtime-2.0.1/tests/files/planned_processes.json +240 -0
- nmdc_runtime-2.0.1/tests/files/study_no_credit_associations.json +7 -0
- nmdc_runtime-2.0.1/tests/files/test_changesheet_insert_study_doi.tsv +6 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_api/test_endpoints.py +65 -12
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_api/test_metadata.py +30 -5
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_gold_translator.py +75 -11
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_integrity.py +2 -2
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_ncbi_xml.py +45 -28
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_neon_benthic_data_translator.py +46 -21
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_neon_soil_data_translator.py +65 -29
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_submission_portal_translator.py +9 -10
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_submission_portal_translator_data.yaml +198 -21
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_graphs/test_submission_portal_graphs.py +3 -1
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_ops/test_gold_api_ops.py +13 -9
- nmdc_runtime-2.0.1/tests/test_ops/test_materialize_alldocs.py +106 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_ops/test_ops.py +2 -0
- nmdc_runtime-1.10.0/.github/workflows/build-and-release-to-spin-berkeley.yml +0 -101
- nmdc_runtime-1.10.0/metadata-translation/notebooks/data/changesheet-array-item-nested-attributes.tsv +0 -6
- nmdc_runtime-1.10.0/metadata-translation/notebooks/data/changesheet-without-separator3.tsv +0 -37
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/models/ingest.py +0 -11
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/models/users.py +0 -15
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/models/workflow_execution_activity.py +0 -17
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/outputs.py +0 -52
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/router.py +0 -9
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/users.py +0 -39
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/workflows/activities/router.py +0 -43
- nmdc_runtime-1.10.0/nmdc_runtime/api/v1/workflows/activities.py +0 -68
- nmdc_runtime-1.10.0/nmdc_runtime/minter/config.py +0 -56
- nmdc_runtime-1.10.0/tests/files/test_changesheet_insert_study_doi.tsv +0 -5
- nmdc_runtime-1.10.0/tests/test_ops/test_materialize_alldocs.py +0 -37
- nmdc_runtime-1.10.0/tests2/domain/service/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.dockerignore +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.env.test +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/pull_request_template.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/workflows/build-and-release-to-spin.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/workflows/lint.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/workflows/mkdocs.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.github/workflows/release-to-pypi.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.gitignore +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.gitpod.Dockerfile +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.gitpod.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/.nvmrc +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/LICENSE +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/Makefile +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/README.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/RELEASES.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/components/nmdc_runtime/workflow/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/components/nmdc_runtime/workflow/spec.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/components/nmdc_runtime/workflow_execution_activity/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/components/nmdc_runtime/workflow_execution_activity/core.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/components/nmdc_runtime/workflow_execution_activity/spec.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/components/nmdc_runtime/workflow_execution_activity/store.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/.env.example +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/GOLDs5levelEcosystemClassificationPaths.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/biosamples.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/console_queries.dev +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/docker-compose.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/envo.owl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/indexing.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_discovery/po.owl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/main.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/main.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/.gitignore +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/.notebook.env.example +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/bookkeeper.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/helpers.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/manual_test_bookkeeper.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_10_0_0_to_10_1_4.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_10_3_0_to_10_4_0.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_7_7_2_to_7_8_0.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_7_8_0_to_8_0_0.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_8_0_0_to_8_1_2.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_8_1_2_to_9_0_4.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_9_0_4_to_9_1_0.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_9_1_0_to_9_2_0.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_9_3_2_to_10_0_0.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/migrate_A_B_C_to_X_Y_Z.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/mongosh-scripts/restore-privileges.mongo.js +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/mongosh-scripts/revoke-privileges.mongo.js +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/requirements.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/stakeholders.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/demo/metadata_migration/notebooks/test_helpers.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docker-compose.test.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docker-compose.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/admin.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/contributing-docs.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/draft.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/explanation/domain-vision-statement.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/explanation/identifiers.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/explanation/journeys.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/author-changesheets.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/claim-and-run-jobs.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/create-triggers.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/improving-search-api.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/jobs/gold-translation-etl.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/release-process.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/howto-guides/update-sensors-ops.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/auth-button.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/auth-client-id.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/auth-close-modal.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/auth-username.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/dagit-apply-changesheet-job.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/dagster-translation-gold-job.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/dagster-translation-gold-launchpad.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/dagster-translation-gold-overview.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/dagster-translation-repo-jobs.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/dagster-workspace-repo-loaded.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/job-triggering.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/list-from-collection-filter.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/list-from-collection-page-token.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/list-from-collection.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/metadata-in-dagit-runs.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/metadata-in-put-types.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/nmdc-runtime-federation.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/rancher-nmdc-runtime-dev-workloads.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/validate-json-copy-paste-execute.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/validate-json-get-one-valid.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/validate-json-response.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/validate-json-try-it-out.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/img/validate-json.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/index.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/nb/get_data.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/nb/queue_and_trigger_data_jobs.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/nb/wf_automation.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/stylesheets/extra.css +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/tutorials/auth.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/tutorials/json.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs/tutorials/metadata-in.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/api-resource-diagram.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/api-resource-layout.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/nmdc-runtime-api-resource-diagram.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/nmdc-wfe.ttl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/redoc-static.html +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/spec.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/design/workflow-automation.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/docs_prev/index.html +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/flake.lock +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/flake.nix +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/github_secrets_to_dotenv.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/guix-manifest.scm +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/Makefile +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/README.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/Froze_Core_2015_S2_0_10_7_Metab.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/MAGs_activity.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/biosample_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/changesheet-ex-01-screenshot.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/changesheet-ex-01.csv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/emsl_data_object_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/emsl_project_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/feature-set.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/ftms_nom_data_products.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/functional-annotation.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/gcms_metabolomics_data_products.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/gold_project_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/img_mg_annotation_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/img_mg_annotation_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/metagenome_annotation_activity.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/mg_assembly_activities_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/mg_assembly_data_objects_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/migs-template-cedar.schema.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/nom_analysis_activity.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/readQC_activities_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/readQC_data_objects_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/read_based_analysis_activity.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/examples/study_test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/images/nmdc-etl-workflow.drawio +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/images/nmdc-etl-workflow.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/images/nmdc-etl-workflow.svg +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/Description_MIxS_Packages_v5.docx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/GOLD-Paths-to-MIxS-ENVO-triad-mapping.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSair_20180621_GOLD_Mapping_04132020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSbuiltenv_20180621_GOLD_Mapping_04172020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShostassoc_20180621_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShumanassoc_20180621_GOLD_Mapping_04142020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShumangut_20180621_GOLD_Mapping_04152020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShumanoral_20180621_GOLD_Mapping_04152020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShumanskin_20180621_GOLD_Mapping_04162020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShumanvaginal_20180621_GOLD_04162020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShydrocarbCores_20180621_Mapping_GOLD.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxShydrocarbfs_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSmatbiofilm_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSmisc_20180621_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSplantassoc_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSsediment_20180621_GOLD_Mapping_04102020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSsoil_20180621_GOLD_Mapping_04102020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSwastesludge_20180621_GOLD_Mapping_Apr-10.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/MIxSwater_20180621_GOLD_Mapping_04122020.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/Makefile +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/README.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/mixs_v4.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/mapping-files/mixs_v5.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/202106_curation_updates.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/202106_workflow_execution_demo.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/202109_metadata_ingest.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/NMDC-GOLD-data-counts.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/README.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/archive/generate-gold-sample-json.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/archive/translate-30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/changesheets-example.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/changesheets-testing.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-insert.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-remove-item.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-remove-property.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-replace.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-with-separator1.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-without-separator1.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/changesheet-without-separator2.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/study-data1.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/study-data2.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/data/study-data3.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/ensure_biosample_set_study_id.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/ghissue_252_253_linked_samples.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/ghissue_255.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/ghissue_272.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/gold-biosample-null-value-analysis.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/gold_ids_to_igsns.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/images/EMSL-data-translation.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/images/GOLD-data-objects-translation.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/images/GOLD-study-project-biosample-translation.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/images/NMDC-jupyter-translation-workflow.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/metaP_stegen.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/metadata_db_admin.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/mongo_etl_demo.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/FICUS-projects-merged.owl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/FICUS-projects-merged.owl.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/FICUS-projects-translation.owl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/catalog-v001.xml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/gold-classification-paths-translation.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/gold-classification-paths-translation.json.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/gold-dataset-translation.owl +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json/biosample.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json/data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json/omics_processing.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json/study.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json_2020-02-01.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json_2020-02-05.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json_2020-02-06.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json_2020-02-12.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json_2020-02-18.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/nmdc-json_2020-02-19.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/schema-test-full.txt.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/schema-test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/schema-test.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/schema-test.txt.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/temp.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-five-biosamples/biosample.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-five-biosamples/data_object.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-five-biosamples/project.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-five-biosamples/study.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/biosample.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/emsl_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/emsl_omics_processing.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/faa_fna_fastq_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/gold_omics_processing.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/gold_study.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline/nmdc-02.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/output/test-pipeline.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test-changesheet-with-separator.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test-changesheet-without-separator.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test-output.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test-pipeline-scratch.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test-pipeline-temp.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test-pipeline.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/test.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/translate-EMSL-data.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/translate-GOLD-data-objects.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/translate-GOLD-study-project-biosample.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/notebooks/translation-pipeline.ipynb +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/align_nmdc_datatypes.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/execute_etl_pipeline.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/fix_omics_processing_json.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/data_operations.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/extract_nmdc_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/load_nmdc_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/nmdc_data_source.yaml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/nmdc_dataframes.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/nmdc_etl_class.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/lib/transform_nmdc_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/mandatory_mixs_terms.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/mandatory_mixs_terms.py.org +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/bin/validate_json.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/2020-23-12-brodie-Gs0135149-soil-metadata.csv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/2021-02-03-stegen_biosample_linking_update.csv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/2021-02-04-brodie_biosample_linking_update.csv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/2021-02-04-stegen_biosample_template.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/2021-07-02-study-changes.csv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/EMSL_FICUS_project_process_data_export.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/EMSL_Hess_Stegen_Blanchard_DatasetToMetagenomeMapping.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/EMSL_biosample_matches.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/FICUS - JGI-EMSL Proposal - Gold Study - ID mapping and PI.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/GOLD-soil-mixs-envo-mappings.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/GOLD-to-mixs-map.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/GOLD_Ecosystem_Classification_Paths_10152019.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/GOLD_ecosystem_classification_paths.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/JGI-EMSL-FICUS-proposals.fnl.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/NMDC-GOLD-Fields.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/README.md +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/Hess_emsl_analysis_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/Hess_metaproteomic_analysis_activities.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/Stegen_emsl_analysis_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/Stegen_metaproteomic_analysis_activities.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_activities.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_activities.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/readQC_activities.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/aim-2-workflows/readQC_data_objects.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/all_gold_fields.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/ficus_project_faa.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/ficus_project_fastq.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/ficus_project_fna.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/mixs_v5.xlsx +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/nmdc-version2.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/metadata-translation/src/data/nmdc-version5.zip +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/mkdocs.yml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/mkdocs_overrides/partials/source.html +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/mongoKeyFile +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nersc-sshproxy.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc-wfe.html +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/analytics.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/boot/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/boot/capabilities.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/boot/object_types.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/boot/triggers.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/boot/workflows.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/core/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/core/idgen.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/core/metadata.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/core/util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/db/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/db/s3.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/capabilities.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/ids.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/jobs.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/metadata.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/object_types.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/objects.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/operations.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/runs.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/search.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/sites.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/endpoints/triggers.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/entrypoint.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/capability.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/id.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/job.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/metadata.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/minter.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/nmdc_schema.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/object.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/object_type.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/operation.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/query.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/run.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/site.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/trigger.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/user.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/api/models/workflow.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/api/v1/workflows → nmdc_runtime-2.0.1/nmdc_runtime/client}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/config.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/containers.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/client → nmdc_runtime-2.0.1/nmdc_runtime/core}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/core/db/Database.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/core → nmdc_runtime-2.0.1/nmdc_runtime/core/db}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/core/exceptions/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/core/exceptions/base.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/core/exceptions/token.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/dagster.Dockerfile +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/core/db → nmdc_runtime-2.0.1/nmdc_runtime/domain}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/domain → nmdc_runtime-2.0.1/nmdc_runtime/domain/users}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/domain/users/queriesInterface.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/domain/users/userSchema.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/domain/users/userService.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/fastapi.Dockerfile +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/domain/users → nmdc_runtime-2.0.1/nmdc_runtime/infrastructure}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/infrastructure → nmdc_runtime-2.0.1/nmdc_runtime/infrastructure/database}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/infrastructure/database/db.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/infrastructure/database → nmdc_runtime-2.0.1/nmdc_runtime/infrastructure/database/impl/mongo}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/infrastructure/database/impl/mongo/db.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/infrastructure/database/impl/mongo → nmdc_runtime-2.0.1/nmdc_runtime/infrastructure/database/impl/mongo/models}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/infrastructure/database/impl/mongo/models/user.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/infrastructure/database/impl/mongo → nmdc_runtime-2.0.1/nmdc_runtime/infrastructure/database}/models/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/infrastructure/database/models/user.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/extract_nmdc_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/load_nmdc_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/nmdc_data_source.yaml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/nmdc_dataframes.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/nmdc_etl_class.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/lib/transform_nmdc_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/main.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/infrastructure/database/models → nmdc_runtime-2.0.1/nmdc_runtime/minter}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/minter → nmdc_runtime-2.0.1/nmdc_runtime/minter/adapters}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/minter/adapters/repository.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/minter/bootstrap.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/minter/adapters → nmdc_runtime-2.0.1/nmdc_runtime/minter/domain}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/minter/domain/model.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/minter/domain → nmdc_runtime-2.0.1/nmdc_runtime/minter/entrypoints}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/minter/entrypoints/fastapi_app.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/minter/entrypoints → nmdc_runtime-2.0.1/nmdc_runtime/site}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site → nmdc_runtime-2.0.1/nmdc_runtime/site/backup}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/backup/nmdcdb_mongodump.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/backup/nmdcdb_mongoexport.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/backup/nmdcdb_mongoimport.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/backup → nmdc_runtime-2.0.1/nmdc_runtime/site/changesheets}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/changesheets/base.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/changesheets/data/OmicsProcessing-to-catted-Biosamples.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/changesheets/scripts/missing_neon_soils_ecosystem_data.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/changesheets/scripts/neon_soils_add_ncbi_ids.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/dagster.yaml +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/changesheets → nmdc_runtime-2.0.1/nmdc_runtime/site/drsobjects}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/drsobjects/ingest.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/drsobjects/registration.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/entrypoint-daemon.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/entrypoint-dagit-readonly.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/entrypoint-dagit.sh +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/drsobjects → nmdc_runtime-2.0.1/nmdc_runtime/site/export}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/export → nmdc_runtime-2.0.1/nmdc_runtime/site/normalization}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/normalization/gold.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/resources.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/normalization → nmdc_runtime-2.0.1/nmdc_runtime/site/translation}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/emsl.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/gold.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/jgi.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/translator.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/translation/util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/util.py +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/translation → nmdc_runtime-2.0.1/nmdc_runtime/site/validation}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/validation/emsl.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/validation/gold.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/validation/jgi.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/validation/util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/site/workspace.yaml +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/static/ORCIDiD_icon128x128.png +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/static/favicon.ico +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/templates/pipeline_search.html +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/templates/search.html +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime/util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime.egg-info/dependency_links.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime.egg-info/entry_points.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/nmdc_runtime.egg-info/top_level.txt +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/requirements/dev.in +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/setup.cfg +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/setup.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tasks.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/conftest.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/e2e/test_minter_api.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/files/nmdc_bsm-11-5nhz3402.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/files/nmdc_dobj-11-000n1286.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/files/test_changesheet_update_bytes_ranged_slot.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/files/test_changesheet_update_one_ph.tsv +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/integration/test_minter_repository.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/mongodump-nmdc-testdb.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/mongorestore-nmdc-testdb.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/nmdcdb.test.archive.gz +0 -0
- {nmdc_runtime-1.10.0/nmdc_runtime/site/validation → nmdc_runtime-2.0.1/tests/test_api}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_api/test_db_mongo.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_api/util.py +0 -0
- {nmdc_runtime-1.10.0/tests/test_api → nmdc_runtime-2.0.1/tests/test_data}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/conftest.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_data/test_gold_translator_data.yaml +0 -0
- {nmdc_runtime-1.10.0/tests/test_data → nmdc_runtime-2.0.1/tests/test_graphs}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_graphs/ensure_jobs.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_graphs/test_hello.py +0 -0
- {nmdc_runtime-1.10.0/tests/test_graphs → nmdc_runtime-2.0.1/tests/test_normalization}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_normalization/test_gold.py +0 -0
- {nmdc_runtime-1.10.0/tests/test_normalization → nmdc_runtime-2.0.1/tests/test_ops}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_ops/test_data_api_ops.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_ops/test_get_csv_rows_from_url.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/test_util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/unit/core_util.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests/unit/test_minter_model.py +0 -0
- {nmdc_runtime-1.10.0/tests/test_ops → nmdc_runtime-2.0.1/tests2}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/tests2 → nmdc_runtime-2.0.1/tests2/domain}/__init__.py +0 -0
- {nmdc_runtime-1.10.0/tests2/domain → nmdc_runtime-2.0.1/tests2/domain/service}/__init__.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tests2/domain/service/test_user_service.py +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/tmp.json +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/util/mongodump-nmdc.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/util/mongorestore-nmdc.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/wait-for-it.sh +0 -0
- {nmdc_runtime-1.10.0 → nmdc_runtime-2.0.1}/workspace.toml +0 -0
|
@@ -40,4 +40,9 @@ NERSC_USERNAME=replaceme
|
|
|
40
40
|
ORCID_NMDC_CLIENT_ID=replaceme
|
|
41
41
|
ORCID_NMDC_CLIENT_SECRET=replaceme
|
|
42
42
|
|
|
43
|
+
# Base URL (without a trailing slash) at which the Runtime can access an instance of ORCID.
|
|
44
|
+
# Note: For the production instance of ORCID, use: https://orcid.org (default)
|
|
45
|
+
# For the sandbox instance of ORCID, use: https://sandbox.orcid.org
|
|
46
|
+
ORCID_BASE_URL=https://orcid.org
|
|
47
|
+
|
|
43
48
|
INFO_BANNER_INNERHTML='Announcement: Something important is about to happen. If you have questions, please contact <a href="mailto:support@microbiomedata.org">support@microbiomedata.org</a>.'
|
|
@@ -19,6 +19,9 @@ on:
|
|
|
19
19
|
- '**.Dockerfile'
|
|
20
20
|
- '**.py'
|
|
21
21
|
- 'requirements/main.txt'
|
|
22
|
+
# Allow developers to trigger this workflow manually via the "Actions" page on GitHub.
|
|
23
|
+
# Reference: https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/manually-running-a-workflow
|
|
24
|
+
workflow_dispatch: { }
|
|
22
25
|
|
|
23
26
|
|
|
24
27
|
jobs:
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
{
|
|
4
4
|
"metadata": {},
|
|
5
5
|
"cell_type": "markdown",
|
|
6
|
-
"source": "# Migrate MongoDB database from `nmdc-schema` `v10.
|
|
6
|
+
"source": "# Migrate MongoDB database from `nmdc-schema` `v10.4.0` to `v10.9.1`",
|
|
7
7
|
"id": "d05efc6327778f9c"
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
"metadata": {},
|
|
11
11
|
"cell_type": "markdown",
|
|
12
|
-
"source": "There are no migrators associated with any schema changes between schema versions `v10.
|
|
12
|
+
"source": "There are no migrators associated with any schema changes between schema versions `v10.4.0` and `v10.9.1`. So, this notebook is a \"no op\" (i.e. \"no operation\").",
|
|
13
13
|
"id": "b99d5924e825b9a2"
|
|
14
14
|
},
|
|
15
15
|
{
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
"cell_type": "markdown",
|
|
5
5
|
"id": "initial_id",
|
|
6
6
|
"metadata": {
|
|
7
|
-
"collapsed": true
|
|
7
|
+
"collapsed": true,
|
|
8
|
+
"jupyter": {
|
|
9
|
+
"outputs_hidden": true
|
|
10
|
+
}
|
|
8
11
|
},
|
|
9
|
-
"source":
|
|
12
|
+
"source": [
|
|
13
|
+
"# Migrate MongoDB database from `nmdc-schema` `v10.9.1` to `v11.0.0`"
|
|
14
|
+
]
|
|
10
15
|
},
|
|
11
16
|
{
|
|
12
17
|
"cell_type": "markdown",
|
|
@@ -15,7 +20,7 @@
|
|
|
15
20
|
"source": [
|
|
16
21
|
"## Introduction\n",
|
|
17
22
|
"\n",
|
|
18
|
-
"This notebook will be used to migrate the database from `nmdc-schema` `v10.
|
|
23
|
+
"This notebook will be used to migrate the database from `nmdc-schema` `v10.9.1` ([released](https://github.com/microbiomedata/nmdc-schema/releases/tag/v10.9.1) October 7, 2024) to `v11.0.0` (i.e. the initial version of the so-called \"Berkeley schema\").\n",
|
|
19
24
|
"\n",
|
|
20
25
|
"Unlike previous migrators, this one does not pick and choose which collections it will dump. There are two reasons for this: (1) migrators no longer have a dedicated `self.agenda` dictionary that indicates all the collections involved in the migration; and (2) this migration is the first one that involves creating, renaming, and dropping any collections; none of which are things that the old `self.agenda`-based system was designed to handle. So, instead of picking and choosing collections, this migrator **dumps them all.**"
|
|
21
26
|
]
|
|
@@ -61,32 +66,12 @@
|
|
|
61
66
|
"outputs": [],
|
|
62
67
|
"execution_count": null
|
|
63
68
|
},
|
|
64
|
-
{
|
|
65
|
-
"cell_type": "markdown",
|
|
66
|
-
"id": "22f5c78f",
|
|
67
|
-
"metadata": {},
|
|
68
|
-
"source": [
|
|
69
|
-
"2. Delete **obsolete dumps** from previous notebooks runs.\n",
|
|
70
|
-
" 1. This is so the dumps you generate below will not be merged with any unrelated ones."
|
|
71
|
-
]
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"cell_type": "code",
|
|
75
|
-
"id": "c70b6715",
|
|
76
|
-
"metadata": {},
|
|
77
|
-
"source": [
|
|
78
|
-
"!rm -rf {cfg.origin_dump_folder_path}\n",
|
|
79
|
-
"!rm -rf {cfg.transformer_dump_folder_path}"
|
|
80
|
-
],
|
|
81
|
-
"outputs": [],
|
|
82
|
-
"execution_count": null
|
|
83
|
-
},
|
|
84
69
|
{
|
|
85
70
|
"cell_type": "markdown",
|
|
86
71
|
"id": "6cd05ccb",
|
|
87
72
|
"metadata": {},
|
|
88
73
|
"source": [
|
|
89
|
-
"
|
|
74
|
+
"2. Create and populate a **notebook configuration file** named `.notebook.env`.\n",
|
|
90
75
|
" 1. You can use `.notebook.env.example` as a template.\n",
|
|
91
76
|
" 2. The \"origin\" MongoDB server is the one that contains the database you want to migrate.\n",
|
|
92
77
|
" 3. The \"transformer\" MongoDB server is the one you want to use to perform the data transformations."
|
|
@@ -124,12 +109,16 @@
|
|
|
124
109
|
"cell_type": "code",
|
|
125
110
|
"id": "e25a0af308c3185b",
|
|
126
111
|
"metadata": {
|
|
127
|
-
"collapsed": false
|
|
112
|
+
"collapsed": false,
|
|
113
|
+
"jupyter": {
|
|
114
|
+
"outputs_hidden": false
|
|
115
|
+
},
|
|
116
|
+
"scrolled": true
|
|
128
117
|
},
|
|
129
118
|
"source": [
|
|
130
119
|
"%pip install --upgrade pip\n",
|
|
131
120
|
"%pip install -r requirements.txt\n",
|
|
132
|
-
"%pip install nmdc-schema==11.0.
|
|
121
|
+
"%pip install nmdc-schema==11.0.0"
|
|
133
122
|
],
|
|
134
123
|
"outputs": [],
|
|
135
124
|
"execution_count": null
|
|
@@ -158,7 +147,7 @@
|
|
|
158
147
|
"# Third-party packages:\n",
|
|
159
148
|
"import pymongo\n",
|
|
160
149
|
"from jsonschema import Draft7Validator as JSONSchemaValidator\n",
|
|
161
|
-
"from nmdc_schema.nmdc_data import get_nmdc_jsonschema_dict, SchemaVariantIdentifier,
|
|
150
|
+
"from nmdc_schema.nmdc_data import get_nmdc_jsonschema_dict, SchemaVariantIdentifier, get_nmdc_schema_definition\n",
|
|
162
151
|
"from nmdc_schema.migrators.adapters.mongo_adapter import MongoAdapter\n",
|
|
163
152
|
"from linkml_runtime import SchemaView\n",
|
|
164
153
|
"\n",
|
|
@@ -220,14 +209,14 @@
|
|
|
220
209
|
"source": [
|
|
221
210
|
"# Mongo client for \"origin\" MongoDB server.\n",
|
|
222
211
|
"origin_mongo_client = pymongo.MongoClient(host=cfg.origin_mongo_host, \n",
|
|
223
|
-
" port=cfg.origin_mongo_port,\n",
|
|
212
|
+
" port=int(cfg.origin_mongo_port),\n",
|
|
224
213
|
" username=cfg.origin_mongo_username,\n",
|
|
225
214
|
" password=cfg.origin_mongo_password,\n",
|
|
226
215
|
" directConnection=True)\n",
|
|
227
216
|
"\n",
|
|
228
217
|
"# Mongo client for \"transformer\" MongoDB server.\n",
|
|
229
218
|
"transformer_mongo_client = pymongo.MongoClient(host=cfg.transformer_mongo_host, \n",
|
|
230
|
-
" port=cfg.transformer_mongo_port,\n",
|
|
219
|
+
" port=int(cfg.transformer_mongo_port),\n",
|
|
231
220
|
" username=cfg.transformer_mongo_username,\n",
|
|
232
221
|
" password=cfg.transformer_mongo_password,\n",
|
|
233
222
|
" directConnection=True)\n",
|
|
@@ -291,7 +280,10 @@
|
|
|
291
280
|
"cell_type": "markdown",
|
|
292
281
|
"id": "bc387abc62686091",
|
|
293
282
|
"metadata": {
|
|
294
|
-
"collapsed": false
|
|
283
|
+
"collapsed": false,
|
|
284
|
+
"jupyter": {
|
|
285
|
+
"outputs_hidden": false
|
|
286
|
+
}
|
|
295
287
|
},
|
|
296
288
|
"source": [
|
|
297
289
|
"### Create JSON Schema validator\n",
|
|
@@ -303,7 +295,10 @@
|
|
|
303
295
|
"cell_type": "code",
|
|
304
296
|
"id": "5c982eb0c04e606d",
|
|
305
297
|
"metadata": {
|
|
306
|
-
"collapsed": false
|
|
298
|
+
"collapsed": false,
|
|
299
|
+
"jupyter": {
|
|
300
|
+
"outputs_hidden": false
|
|
301
|
+
}
|
|
307
302
|
},
|
|
308
303
|
"source": [
|
|
309
304
|
"nmdc_jsonschema: dict = get_nmdc_jsonschema_dict(variant=SchemaVariantIdentifier.nmdc_materialized_patterns)\n",
|
|
@@ -320,22 +315,27 @@
|
|
|
320
315
|
"execution_count": null
|
|
321
316
|
},
|
|
322
317
|
{
|
|
323
|
-
"metadata": {},
|
|
324
318
|
"cell_type": "markdown",
|
|
319
|
+
"id": "e7e8befb362a1670",
|
|
320
|
+
"metadata": {},
|
|
325
321
|
"source": [
|
|
326
322
|
"### Create SchemaView\n",
|
|
327
323
|
"\n",
|
|
328
324
|
"In this step, you'll instantiate a `SchemaView` that is bound to the destination schema. \n",
|
|
329
325
|
"\n",
|
|
330
326
|
"- Reference: https://linkml.io/linkml/developers/schemaview.html"
|
|
331
|
-
]
|
|
332
|
-
"id": "e7e8befb362a1670"
|
|
327
|
+
]
|
|
333
328
|
},
|
|
334
329
|
{
|
|
335
|
-
"metadata": {},
|
|
336
330
|
"cell_type": "code",
|
|
337
|
-
"source": "schema_view = SchemaView(get_nmdc_jsonschema())",
|
|
338
331
|
"id": "625a6e7df5016677",
|
|
332
|
+
"metadata": {},
|
|
333
|
+
"source": [
|
|
334
|
+
"schema_view = SchemaView(get_nmdc_schema_definition())\n",
|
|
335
|
+
"\n",
|
|
336
|
+
"# As a sanity test, confirm we can use the `SchemaView` instance to access a schema class.\n",
|
|
337
|
+
"schema_view.get_class(class_name=\"Database\")[\"name\"]"
|
|
338
|
+
],
|
|
339
339
|
"outputs": [],
|
|
340
340
|
"execution_count": null
|
|
341
341
|
},
|
|
@@ -379,6 +379,27 @@
|
|
|
379
379
|
"outputs": [],
|
|
380
380
|
"execution_count": null
|
|
381
381
|
},
|
|
382
|
+
{
|
|
383
|
+
"cell_type": "markdown",
|
|
384
|
+
"id": "7f9c87de6fb8530c",
|
|
385
|
+
"metadata": {},
|
|
386
|
+
"source": [
|
|
387
|
+
"### Delete obsolete dumps from previous migrations\n",
|
|
388
|
+
"\n",
|
|
389
|
+
"Delete any existing dumps before we create new ones in this notebook. This is so the dumps you generate with this notebook do not get merged with any unrelated ones."
|
|
390
|
+
]
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"cell_type": "code",
|
|
394
|
+
"id": "6a949d0fcb4b6fa0",
|
|
395
|
+
"metadata": {},
|
|
396
|
+
"source": [
|
|
397
|
+
"!rm -rf {cfg.origin_dump_folder_path}\n",
|
|
398
|
+
"!rm -rf {cfg.transformer_dump_folder_path}"
|
|
399
|
+
],
|
|
400
|
+
"outputs": [],
|
|
401
|
+
"execution_count": null
|
|
402
|
+
},
|
|
382
403
|
{
|
|
383
404
|
"cell_type": "markdown",
|
|
384
405
|
"id": "b7799910b6b0715d",
|
|
@@ -394,7 +415,9 @@
|
|
|
394
415
|
{
|
|
395
416
|
"cell_type": "code",
|
|
396
417
|
"id": "da530d6754c4f6fe",
|
|
397
|
-
"metadata": {
|
|
418
|
+
"metadata": {
|
|
419
|
+
"scrolled": true
|
|
420
|
+
},
|
|
398
421
|
"source": [
|
|
399
422
|
"# Dump all collections from the \"origin\" database.\n",
|
|
400
423
|
"shell_command = f\"\"\"\n",
|
|
@@ -427,7 +450,9 @@
|
|
|
427
450
|
{
|
|
428
451
|
"cell_type": "code",
|
|
429
452
|
"id": "79bd888e82d52a93",
|
|
430
|
-
"metadata": {
|
|
453
|
+
"metadata": {
|
|
454
|
+
"scrolled": true
|
|
455
|
+
},
|
|
431
456
|
"source": [
|
|
432
457
|
"# Restore the dumped collections to the \"transformer\" MongoDB server.\n",
|
|
433
458
|
"shell_command = f\"\"\"\n",
|
|
@@ -466,7 +491,9 @@
|
|
|
466
491
|
{
|
|
467
492
|
"cell_type": "code",
|
|
468
493
|
"id": "9c89c9dd3afe64e2",
|
|
469
|
-
"metadata": {
|
|
494
|
+
"metadata": {
|
|
495
|
+
"scrolled": true
|
|
496
|
+
},
|
|
470
497
|
"source": [
|
|
471
498
|
"# Instantiate a MongoAdapter bound to the \"transformer\" database.\n",
|
|
472
499
|
"adapter = MongoAdapter(\n",
|
|
@@ -516,7 +543,7 @@
|
|
|
516
543
|
"for collection_name in ordered_collection_names:\n",
|
|
517
544
|
" collection = transformer_mongo_client[\"nmdc\"][collection_name]\n",
|
|
518
545
|
" num_documents_in_collection = collection.count_documents({})\n",
|
|
519
|
-
" print(f\"Validating collection {collection_name} ({num_documents_in_collection} documents)\")\n",
|
|
546
|
+
" print(f\"Validating collection {collection_name} ({num_documents_in_collection} documents)\", end=\"\\t\") # no newline\n",
|
|
520
547
|
"\n",
|
|
521
548
|
" for document in collection.find():\n",
|
|
522
549
|
" # Validate the transformed document.\n",
|
|
@@ -533,7 +560,9 @@
|
|
|
533
560
|
" #\n",
|
|
534
561
|
" document_without_underscore_id_key = {key: value for key, value in document.items() if key != \"_id\"}\n",
|
|
535
562
|
" root_to_validate = dict([(collection_name, [document_without_underscore_id_key])])\n",
|
|
536
|
-
" nmdc_jsonschema_validator.validate(root_to_validate) # raises exception if invalid"
|
|
563
|
+
" nmdc_jsonschema_validator.validate(root_to_validate) # raises exception if invalid\n",
|
|
564
|
+
"\n",
|
|
565
|
+
" print(f\"Done\")"
|
|
537
566
|
],
|
|
538
567
|
"outputs": [],
|
|
539
568
|
"execution_count": null
|
|
@@ -551,7 +580,9 @@
|
|
|
551
580
|
{
|
|
552
581
|
"cell_type": "code",
|
|
553
582
|
"id": "db6e432d",
|
|
554
|
-
"metadata": {
|
|
583
|
+
"metadata": {
|
|
584
|
+
"scrolled": true
|
|
585
|
+
},
|
|
555
586
|
"source": [
|
|
556
587
|
"# Dump the database from the \"transformer\" MongoDB server.\n",
|
|
557
588
|
"shell_command = f\"\"\"\n",
|
|
@@ -575,7 +606,10 @@
|
|
|
575
606
|
"cell_type": "markdown",
|
|
576
607
|
"id": "997fcb281d9d3222",
|
|
577
608
|
"metadata": {
|
|
578
|
-
"collapsed": false
|
|
609
|
+
"collapsed": false,
|
|
610
|
+
"jupyter": {
|
|
611
|
+
"outputs_hidden": false
|
|
612
|
+
}
|
|
579
613
|
},
|
|
580
614
|
"source": [
|
|
581
615
|
"### Create a bookkeeper\n",
|
|
@@ -656,7 +690,9 @@
|
|
|
656
690
|
{
|
|
657
691
|
"cell_type": "code",
|
|
658
692
|
"id": "1dfbcf0a",
|
|
659
|
-
"metadata": {
|
|
693
|
+
"metadata": {
|
|
694
|
+
"scrolled": true
|
|
695
|
+
},
|
|
660
696
|
"source": [
|
|
661
697
|
"# Load the transformed collections into the origin server, replacing any same-named ones that are there.\n",
|
|
662
698
|
"shell_command = f\"\"\"\n",
|
|
@@ -683,7 +719,10 @@
|
|
|
683
719
|
"cell_type": "markdown",
|
|
684
720
|
"id": "ca5ee89a79148499",
|
|
685
721
|
"metadata": {
|
|
686
|
-
"collapsed": false
|
|
722
|
+
"collapsed": false,
|
|
723
|
+
"jupyter": {
|
|
724
|
+
"outputs_hidden": false
|
|
725
|
+
}
|
|
687
726
|
},
|
|
688
727
|
"source": [
|
|
689
728
|
"### Indicate that the migration is complete\n",
|
|
@@ -695,7 +734,10 @@
|
|
|
695
734
|
"cell_type": "code",
|
|
696
735
|
"id": "d1eaa6c92789c4f3",
|
|
697
736
|
"metadata": {
|
|
698
|
-
"collapsed": false
|
|
737
|
+
"collapsed": false,
|
|
738
|
+
"jupyter": {
|
|
739
|
+
"outputs_hidden": false
|
|
740
|
+
}
|
|
699
741
|
},
|
|
700
742
|
"source": [
|
|
701
743
|
"bookkeeper.record_migration_event(migrator=migrator, event=MigrationEvent.MIGRATION_COMPLETED)"
|
|
@@ -732,11 +774,19 @@
|
|
|
732
774
|
],
|
|
733
775
|
"outputs": [],
|
|
734
776
|
"execution_count": null
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"cell_type": "code",
|
|
780
|
+
"id": "037db214-ea76-46bf-bb6a-bf1ff9b28a72",
|
|
781
|
+
"metadata": {},
|
|
782
|
+
"source": [],
|
|
783
|
+
"outputs": [],
|
|
784
|
+
"execution_count": null
|
|
735
785
|
}
|
|
736
786
|
],
|
|
737
787
|
"metadata": {
|
|
738
788
|
"kernelspec": {
|
|
739
|
-
"display_name": "Python 3",
|
|
789
|
+
"display_name": "Python 3 (ipykernel)",
|
|
740
790
|
"language": "python",
|
|
741
791
|
"name": "python3"
|
|
742
792
|
},
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cells": [
|
|
3
|
+
{
|
|
4
|
+
"metadata": {},
|
|
5
|
+
"cell_type": "markdown",
|
|
6
|
+
"source": "# Migrate MongoDB database from `nmdc-schema` `v11.0.0` to `v11.0.1`",
|
|
7
|
+
"id": "d05efc6327778f9c"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"metadata": {},
|
|
11
|
+
"cell_type": "markdown",
|
|
12
|
+
"source": "There are no migrators associated with any schema changes between schema versions `v11.0.0` and `v11.0.1`. So, this notebook is a \"no op\" (i.e. \"no operation\").",
|
|
13
|
+
"id": "b99d5924e825b9a2"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"cell_type": "code",
|
|
17
|
+
"id": "initial_id",
|
|
18
|
+
"metadata": {
|
|
19
|
+
"collapsed": true,
|
|
20
|
+
"jupyter": {
|
|
21
|
+
"is_executing": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"source": "# no op",
|
|
25
|
+
"outputs": [],
|
|
26
|
+
"execution_count": null
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"metadata": {
|
|
30
|
+
"kernelspec": {
|
|
31
|
+
"display_name": "Python 3",
|
|
32
|
+
"language": "python",
|
|
33
|
+
"name": "python3"
|
|
34
|
+
},
|
|
35
|
+
"language_info": {
|
|
36
|
+
"codemirror_mode": {
|
|
37
|
+
"name": "ipython",
|
|
38
|
+
"version": 2
|
|
39
|
+
},
|
|
40
|
+
"file_extension": ".py",
|
|
41
|
+
"mimetype": "text/x-python",
|
|
42
|
+
"name": "python",
|
|
43
|
+
"nbconvert_exporter": "python",
|
|
44
|
+
"pygments_lexer": "ipython2",
|
|
45
|
+
"version": "2.7.6"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"nbformat": 4,
|
|
49
|
+
"nbformat_minor": 5
|
|
50
|
+
}
|