nmdc-runtime 2.6.0__tar.gz → 2.8.0__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-2.6.0 → nmdc_runtime-2.8.0}/.env.example +15 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/workflows/mkdocs.yml +1 -3
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/workflows/python-app.yml +2 -4
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.gitignore +4 -2
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/Makefile +52 -34
- {nmdc_runtime-2.6.0/nmdc_runtime.egg-info → nmdc_runtime-2.8.0}/PKG-INFO +18 -3
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/README.md +17 -2
- nmdc_runtime-2.8.0/db/migrations/notebooks/migrate_11_6_0_to_11_6_1.ipynb +56 -0
- nmdc_runtime-2.8.0/db/migrations/notebooks/migrate_11_6_1_to_11_7_0.ipynb +802 -0
- nmdc_runtime-2.8.0/db/migrations/notebooks/migrate_11_7_0_to_11_8_0.ipynb +805 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docker-compose.test.yml +4 -10
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docker-compose.yml +3 -3
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/admin.md +30 -5
- nmdc_runtime-2.8.0/docs/content/contributing-docs.md +21 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/explanation/identifiers.md +14 -12
- nmdc_runtime-2.8.0/docs/content/img/nmdc-logo-bg-white.png +0 -0
- nmdc_runtime-2.8.0/docs/content/nb/ontology_loader.ipynb +444 -0
- nmdc_runtime-2.8.0/docs/content/stylesheets/extra.css +57 -0
- nmdc_runtime-2.8.0/docs/mkdocs.yml +125 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/README.md +5 -2
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/Dockerfile +5 -2
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/db/mongo.py +13 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/find.py +13 -6
- nmdc_runtime-2.8.0/nmdc_runtime/api/endpoints/lib/path_segments.py +165 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/nmdcschema.py +324 -40
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/queries.py +146 -3
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/main.py +14 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/nmdc_schema.py +22 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/util.py +7 -0
- nmdc_runtime-2.8.0/nmdc_runtime/config.py +5 -0
- nmdc_runtime-2.8.0/nmdc_runtime/mongo_util.py +90 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/export/ncbi_xml.py +98 -27
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/export/ncbi_xml_utils.py +27 -25
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/graphs.py +42 -5
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/ops.py +405 -14
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/repair/database_updater.py +202 -1
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/repository.py +100 -1
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/resources.py +13 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/neon_benthic_translator.py +1 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/neon_soil_translator.py +1 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/neon_surface_water_translator.py +1 -0
- nmdc_runtime-2.8.0/nmdc_runtime/static/favicon.ico +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/util.py +56 -2
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0/nmdc_runtime.egg-info}/PKG-INFO +18 -3
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime.egg-info/SOURCES.txt +65 -54
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/requirements/dev.in +2 -1
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/requirements/dev.txt +30 -28
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/requirements/main.in +20 -2
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/requirements/main.txt +338 -118
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/nmdc_bsm-12-7mysck21.json +0 -3
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/nmdc_dobj-11-000n1286.json +1 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/nmdc_sty-11-pzmd0x14.json +0 -3
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/lib/faker.py +170 -48
- nmdc_runtime-2.8.0/tests/lib/util.py +33 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_api/test_endpoints.py +411 -23
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_api/test_metadata.py +17 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/data/nucleotide_sequencing_mapping_input.yaml +1 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/data/nucleotide_sequencing_mapping_output.yaml +1 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_database_updater.py +190 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_ncbi_xml.py +176 -6
- nmdc_runtime-2.8.0/tests/test_ops/test_load_ontology.py +125 -0
- nmdc_runtime-2.8.0/tests/test_ops/test_materialize_alldocs.py +349 -0
- nmdc_runtime-2.8.0/tests/test_the_util/test_mongo_util.py +28 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_the_util/test_the_util.py +176 -18
- nmdc_runtime-2.6.0/docs/contributing-docs.md +0 -17
- nmdc_runtime-2.6.0/docs/stylesheets/extra.css +0 -3
- nmdc_runtime-2.6.0/mkdocs.yml +0 -69
- nmdc_runtime-2.6.0/nmdc_runtime/config.py +0 -1
- nmdc_runtime-2.6.0/tests/test_ops/test_materialize_alldocs.py +0 -132
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.docker/mongoKeyFile +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.docker/mongo_init/initialize_replica_set.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.docker/wait-for-it.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.dockerignore +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.env.test +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/pull_request_template.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/workflows/build-and-release-to-spin.yml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/workflows/deploy-redirects.yml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/workflows/lint.yml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/.github/workflows/release-to-pypi.yml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/LICENSE +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/RELEASES.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/components/nmdc_runtime/workflow/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/components/nmdc_runtime/workflow/spec.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/components/nmdc_runtime/workflow_execution_activity/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/components/nmdc_runtime/workflow_execution_activity/core.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/components/nmdc_runtime/workflow_execution_activity/spec.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/components/nmdc_runtime/workflow_execution_activity/store.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/README.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/README.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/.gitignore +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/.notebook.env.example +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/bookkeeper.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/helpers.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/manual_test_bookkeeper.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_10_0_0_to_10_1_4.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_10_3_0_to_10_4_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_10_4_0_to_10_9_1.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_10_9_1_to_11_0_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_0_0_to_11_0_1.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_0_3_to_11_1_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_1_0_to_11_2_1.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_2_1_to_11_3_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_3_0_to_11_4_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_4_0_to_11_5_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_5_0_to_11_5_1.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_11_5_1_to_11_6_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_7_7_2_to_7_8_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_7_8_0_to_8_0_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_8_0_0_to_8_1_2.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_8_1_2_to_9_0_4.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_9_0_4_to_9_1_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_9_1_0_to_9_2_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_9_3_2_to_10_0_0.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/migrate_A_B_C_to_X_Y_Z.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/mongosh-scripts/restore-privileges.mongo.js +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/mongosh-scripts/revoke-privileges.mongo.js +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/requirements.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/stakeholders.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/db/migrations/notebooks/test_helpers.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/.env.example +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/GOLDs5levelEcosystemClassificationPaths.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/biosamples.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/console_queries.dev +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/docker-compose.yml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/envo.owl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/indexing.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_discovery/po.owl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_migration/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_migration/main.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/demo/metadata_migration/main.py +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/draft.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/explanation/domain-vision-statement.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/explanation/journeys.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/author-changesheets.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/claim-and-run-jobs.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/create-triggers.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/improving-search-api.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/jobs/gold-translation-etl.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/minting-ids.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/release-process.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/howto-guides/update-sensors-ops.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/auth-button.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/auth-client-id.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/auth-close-modal.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/auth-username.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/dagit-apply-changesheet-job.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/dagster-translation-gold-job.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/dagster-translation-gold-launchpad.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/dagster-translation-gold-overview.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/dagster-translation-repo-jobs.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/dagster-workspace-repo-loaded.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/exporters-dagit.png +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/static → nmdc_runtime-2.8.0/docs/content/img}/favicon.ico +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/job-triggering.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/list-from-collection-filter.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/list-from-collection-page-token.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/list-from-collection.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/metadata-in-dagit-runs.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/metadata-in-put-types.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/nmdc-runtime-federation.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/rancher-nmdc-runtime-dev-workloads.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/translators-dagit.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/validate-json-copy-paste-execute.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/validate-json-get-one-valid.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/validate-json-response.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/validate-json-try-it-out.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/img/validate-json.png +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/index.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/nb/api_access_via_python.ipynb +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/nb/bulk_validation_referential_integrity_check.ipynb +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/nb/get_data.ipynb +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/nb/queue_and_trigger_data_jobs.ipynb +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/nb/wf_automation.ipynb +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/tutorials/auth.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/tutorials/exporters.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/tutorials/json.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/tutorials/metadata-in.md +0 -0
- {nmdc_runtime-2.6.0/docs → nmdc_runtime-2.8.0/docs/content}/tutorials/translators.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0/docs}/mkdocs_overrides/partials/source.html +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/api-resource-diagram.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/api-resource-layout.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/nmdc-runtime-api-resource-diagram.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/nmdc-wfe.ttl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/redoc-static.html +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/spec.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/design/workflow-automation.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/docs_prev/index.html +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/flake.lock +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/flake.nix +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/guix-manifest.scm +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/Makefile +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/README.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/Froze_Core_2015_S2_0_10_7_Metab.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/MAGs_activity.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/biosample_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/changesheet-ex-01-screenshot.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/changesheet-ex-01.csv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/emsl_data_object_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/emsl_project_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/feature-set.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/ftms_nom_data_products.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/functional-annotation.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/gcms_metabolomics_data_products.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/gold_project_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/img_mg_annotation_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/img_mg_annotation_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/metagenome_annotation_activity.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/mg_assembly_activities_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/mg_assembly_data_objects_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/migs-template-cedar.schema.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/nom_analysis_activity.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/readQC_activities_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/readQC_data_objects_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/read_based_analysis_activity.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/examples/study_test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/images/nmdc-etl-workflow.drawio +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/images/nmdc-etl-workflow.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/images/nmdc-etl-workflow.svg +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/Description_MIxS_Packages_v5.docx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/GOLD-Paths-to-MIxS-ENVO-triad-mapping.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSair_20180621_GOLD_Mapping_04132020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSbuiltenv_20180621_GOLD_Mapping_04172020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShostassoc_20180621_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShumanassoc_20180621_GOLD_Mapping_04142020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShumangut_20180621_GOLD_Mapping_04152020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShumanoral_20180621_GOLD_Mapping_04152020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShumanskin_20180621_GOLD_Mapping_04162020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShumanvaginal_20180621_GOLD_04162020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShydrocarbCores_20180621_Mapping_GOLD.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxShydrocarbfs_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSmatbiofilm_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSmisc_20180621_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSplantassoc_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSsediment_20180621_GOLD_Mapping_04102020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSsoil_20180621_GOLD_Mapping_04102020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSwastesludge_20180621_GOLD_Mapping_Apr-10.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/MIxSwater_20180621_GOLD_Mapping_04122020.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/Makefile +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/README.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/mixs_v4.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/mapping-files/mixs_v5.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/202106_curation_updates.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/202106_workflow_execution_demo.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/202109_metadata_ingest.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/NMDC-GOLD-data-counts.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/README.md +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/archive/generate-gold-sample-json.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/archive/translate-30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/changesheets-example.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/changesheets-testing.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-array-item-nested-attributes.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-insert.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-remove-item.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-remove-property.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-replace.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-update-pi-websites.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-with-separator1.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-without-separator1.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-without-separator2.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/changesheet-without-separator3.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/study-data1.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/study-data2.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/data/study-data3.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/ensure_biosample_set_study_id.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/ghissue_252_253_linked_samples.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/ghissue_255.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/ghissue_272.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/gold-biosample-null-value-analysis.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/gold_ids_to_igsns.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/images/EMSL-data-translation.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/images/GOLD-data-objects-translation.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/images/GOLD-study-project-biosample-translation.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/images/NMDC-jupyter-translation-workflow.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/metaP_stegen.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/metadata_db_admin.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/mongo_etl_demo.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/FICUS-projects-merged.owl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/FICUS-projects-merged.owl.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/FICUS-projects-translation.owl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/catalog-v001.xml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.json.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/gold-dataset-translation.owl +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json/biosample.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json/data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json/omics_processing.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json/study.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-01.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-05.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-06.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-12.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-18.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-19.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/schema-test-full.txt.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/schema-test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/schema-test.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/schema-test.txt.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/temp.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-five-biosamples/biosample.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-five-biosamples/data_object.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-five-biosamples/project.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-five-biosamples/study.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/biosample.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/emsl_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/emsl_omics_processing.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/faa_fna_fastq_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/gold_omics_processing.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/gold_study.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline/nmdc-02.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/output/test-pipeline.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test-changesheet-with-separator.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test-changesheet-without-separator.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test-output.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test-pipeline-scratch.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test-pipeline-temp.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test-pipeline.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/test.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/translate-EMSL-data.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/translate-GOLD-data-objects.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/translate-GOLD-study-project-biosample.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/notebooks/translation-pipeline.ipynb +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/align_nmdc_datatypes.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/execute_etl_pipeline.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/fix_omics_processing_json.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/data_operations.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/extract_nmdc_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/load_nmdc_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/nmdc_data_source.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/nmdc_dataframes.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/nmdc_etl_class.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/lib/transform_nmdc_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/mandatory_mixs_terms.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/mandatory_mixs_terms.py.org +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/bin/validate_json.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/2020-23-12-brodie-Gs0135149-soil-metadata.csv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/2021-02-03-stegen_biosample_linking_update.csv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/2021-02-04-brodie_biosample_linking_update.csv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/2021-02-04-stegen_biosample_template.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/2021-07-02-study-changes.csv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/EMSL_FICUS_project_process_data_export.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/EMSL_Hess_Stegen_Blanchard_DatasetToMetagenomeMapping.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/EMSL_biosample_matches.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/FICUS - JGI-EMSL Proposal - Gold Study - ID mapping and PI.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/GOLD-soil-mixs-envo-mappings.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/GOLD-to-mixs-map.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/GOLD_Ecosystem_Classification_Paths_10152019.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/GOLD_ecosystem_classification_paths.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/JGI-EMSL-FICUS-proposals.fnl.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/NMDC-GOLD-Fields.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/Hess_emsl_analysis_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/Hess_metaproteomic_analysis_activities.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/Stegen_emsl_analysis_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/Stegen_metaproteomic_analysis_activities.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_activities.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_activities.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/readQC_activities.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/aim-2-workflows/readQC_data_objects.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/all_gold_fields.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/ficus_project_faa.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/ficus_project_fastq.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/ficus_project_fna.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/mixs_v5.xlsx +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/nmdc-version2.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/metadata-translation/src/data/nmdc-version5.zip +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc-wfe.html +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/analytics.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/boot/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/boot/capabilities.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/boot/object_types.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/boot/triggers.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/boot/workflows.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/core/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/core/auth.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/core/idgen.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/core/metadata.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/core/util.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/db/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/db/s3.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/capabilities.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/ids.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/jobs.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/api/models → nmdc_runtime-2.8.0/nmdc_runtime/api/endpoints/lib}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/metadata.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/object_types.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/objects.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/operations.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/runs.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/search.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/sites.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/triggers.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/users.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/util.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/endpoints/workflows.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/entrypoint.sh +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/client → nmdc_runtime-2.8.0/nmdc_runtime/api/models}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/capability.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/id.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/job.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/metadata.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/minter.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/object.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/object_type.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/operation.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/query.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/query_continuation.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/run.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/site.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/trigger.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/user.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/models/workflow.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/api/v1/router.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/core → nmdc_runtime-2.8.0/nmdc_runtime/client}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/containers.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/core/db → nmdc_runtime-2.8.0/nmdc_runtime/core}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/core/db/Database.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/domain → nmdc_runtime-2.8.0/nmdc_runtime/core/db}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/core/exceptions/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/core/exceptions/base.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/core/exceptions/token.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/domain/users → nmdc_runtime-2.8.0/nmdc_runtime/domain}/__init__.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/infrastructure → nmdc_runtime-2.8.0/nmdc_runtime/domain/users}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/domain/users/queriesInterface.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/domain/users/userSchema.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/domain/users/userService.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/infrastructure/database → nmdc_runtime-2.8.0/nmdc_runtime/infrastructure}/__init__.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/infrastructure/database/impl/mongo → nmdc_runtime-2.8.0/nmdc_runtime/infrastructure/database}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/infrastructure/database/db.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/infrastructure/database/impl/mongo/models → nmdc_runtime-2.8.0/nmdc_runtime/infrastructure/database/impl/mongo}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/infrastructure/database/impl/mongo/db.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/infrastructure/database → nmdc_runtime-2.8.0/nmdc_runtime/infrastructure/database/impl/mongo}/models/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/infrastructure/database/impl/mongo/models/user.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/minter → nmdc_runtime-2.8.0/nmdc_runtime/infrastructure/database/models}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/infrastructure/database/models/user.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/extract_nmdc_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/load_nmdc_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/nmdc_data_source.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/nmdc_dataframes.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/nmdc_etl_class.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/lib/transform_nmdc_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/main.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/minter/adapters → nmdc_runtime-2.8.0/nmdc_runtime/minter}/__init__.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/minter/domain → nmdc_runtime-2.8.0/nmdc_runtime/minter/adapters}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/minter/adapters/repository.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/minter/bootstrap.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/minter/config.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/minter/entrypoints → nmdc_runtime-2.8.0/nmdc_runtime/minter/domain}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/minter/domain/model.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site → nmdc_runtime-2.8.0/nmdc_runtime/minter/entrypoints}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/minter/entrypoints/fastapi_app.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/backup → nmdc_runtime-2.8.0/nmdc_runtime/site}/__init__.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/changesheets → nmdc_runtime-2.8.0/nmdc_runtime/site/backup}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/backup/nmdcdb_mongodump.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/backup/nmdcdb_mongoexport.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/backup/nmdcdb_mongoimport.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/drsobjects → nmdc_runtime-2.8.0/nmdc_runtime/site/changesheets}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/changesheets/base.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/changesheets/data/OmicsProcessing-to-catted-Biosamples.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/changesheets/scripts/missing_neon_soils_ecosystem_data.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/changesheets/scripts/neon_soils_add_ncbi_ids.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/dagster.yaml +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/export → nmdc_runtime-2.8.0/nmdc_runtime/site/drsobjects}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/drsobjects/ingest.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/drsobjects/registration.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/entrypoint-daemon.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/entrypoint-dagit-readonly.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/entrypoint-dagit.sh +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/normalization → nmdc_runtime-2.8.0/nmdc_runtime/site/export}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/export/study_metadata.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/repair → nmdc_runtime-2.8.0/nmdc_runtime/site/normalization}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/normalization/gold.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/translation → nmdc_runtime-2.8.0/nmdc_runtime/site/repair}/__init__.py +0 -0
- {nmdc_runtime-2.6.0/nmdc_runtime/site/validation → nmdc_runtime-2.8.0/nmdc_runtime/site/translation}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/emsl.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/gold.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/gold_translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/jgi.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/neon_utils.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/submission_portal_translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/translation/util.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/util.py +0 -0
- {nmdc_runtime-2.6.0/tests/test_api → nmdc_runtime-2.8.0/nmdc_runtime/site/validation}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/validation/emsl.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/validation/gold.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/validation/jgi.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/validation/util.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/site/workspace.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/static/ORCIDiD_icon128x128.png +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime/templates/search.html +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime.egg-info/dependency_links.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime.egg-info/entry_points.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/nmdc_runtime.egg-info/top_level.txt +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/setup.cfg +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/setup.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tasks.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/conftest.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/e2e/test_minter_api.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/nmdc_bsm-11-0pyv7738.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/nmdc_bsm-11-5nhz3402.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/planned_processes.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/study_no_credit_associations.json +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/test_changesheet_decimal_value.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/test_changesheet_insert_study_doi.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/test_changesheet_update_bytes_ranged_slot.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/files/test_changesheet_update_one_ph.tsv +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/integration/test_minter_repository.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/mongorestore-nmdc-testdb.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/nmdcdb.test.archive.gz +0 -0
- {nmdc_runtime-2.6.0/tests/test_data → nmdc_runtime-2.8.0/tests/test_api}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_api/test_db_mongo.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_api/util.py +0 -0
- {nmdc_runtime-2.6.0/tests/test_graphs → nmdc_runtime-2.8.0/tests/test_data}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/conftest.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/data/plant_air_jgi_input.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/data/plant_air_jgi_output.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/data/sequencing_data_input.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/data/sequencing_data_output.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_gold_translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_gold_translator_data.yaml +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_integrity.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_neon_benthic_data_translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_neon_soil_data_translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_submission_portal_translator.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_data/test_translator.py +0 -0
- {nmdc_runtime-2.6.0/tests/test_normalization → nmdc_runtime-2.8.0/tests/test_graphs}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_graphs/ensure_jobs.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_graphs/test_hello.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_graphs/test_submission_portal_graphs.py +0 -0
- {nmdc_runtime-2.6.0/tests/test_ops → nmdc_runtime-2.8.0/tests/test_normalization}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_normalization/test_gold.py +0 -0
- {nmdc_runtime-2.6.0/tests/test_the_util → nmdc_runtime-2.8.0/tests/test_ops}/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_ops/test_data_api_ops.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_ops/test_get_csv_rows_from_url.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_ops/test_gold_api_ops.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_ops/test_ops.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_the_util/README.md +0 -0
- /nmdc_runtime-2.6.0/nmdc_runtime/test.Dockerfile → /nmdc_runtime-2.8.0/tests/test_the_util/__init__.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/test_util.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/unit/core_util.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/tests/unit/test_minter_model.py +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/util/get_latest_nmdc_prod_dump_dir.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/util/mongodump-nmdc.sh +0 -0
- {nmdc_runtime-2.6.0 → nmdc_runtime-2.8.0}/util/mongorestore-nmdc.sh +0 -0
|
@@ -13,6 +13,8 @@ DO_ENDPOINT_URL=https://nyc3.digitaloceanspaces.com
|
|
|
13
13
|
DO_SPACES_KEY=generateme
|
|
14
14
|
DO_SPACES_SECRET=generateme
|
|
15
15
|
|
|
16
|
+
ENABLE_DB_TESTS=false
|
|
17
|
+
|
|
16
18
|
# to get a string like this run:
|
|
17
19
|
# openssl rand -hex 32
|
|
18
20
|
JWT_SECRET_KEY=generateme
|
|
@@ -57,3 +59,16 @@ MONGO_REMOTE_DUMP_DIR=/global/cfs/projectdirs/m3408/nmdc-mongodumps/dump_nmdc-pr
|
|
|
57
59
|
# Note: This is currently only used by the `nersc-sshproxy` target in `Makefile`.
|
|
58
60
|
# Reference: https://docs.nersc.gov/connect/mfa/#sshproxy
|
|
59
61
|
PATH_TO_NERSC_SSHPROXY=/Users/Alice/Downloads/sshproxy
|
|
62
|
+
|
|
63
|
+
# `make up-dev` and `make up-test` will map services to host-machine port numbers using the following environment
|
|
64
|
+
# variables in your `.env` file. This way, different developers can use different local port numbers, without modifying
|
|
65
|
+
# files that get stored in the repository.
|
|
66
|
+
#
|
|
67
|
+
# Note: the `.env` file specifically is used here, *not* the file set as `env_file` in a Docker Compose file.
|
|
68
|
+
# This is why, e.g., `.env.test` does not include any of the below environment-variable settings.
|
|
69
|
+
DEV_STACK_HOST_MACHINE_PORT_DAGIT=3000
|
|
70
|
+
DEV_STACK_HOST_MACHINE_PORT_FASTAPI=8000
|
|
71
|
+
DEV_STACK_HOST_MACHINE_PORT_MONGO=27018
|
|
72
|
+
TEST_STACK_HOST_MACHINE_PORT_DAGIT=3005
|
|
73
|
+
TEST_STACK_HOST_MACHINE_PORT_FASTAPI=8005
|
|
74
|
+
TEST_STACK_HOST_MACHINE_PORT_MONGO=27022
|
|
@@ -5,8 +5,6 @@ on:
|
|
|
5
5
|
- main
|
|
6
6
|
paths:
|
|
7
7
|
- 'docs/**'
|
|
8
|
-
- 'mkdocs_overrides/**'
|
|
9
|
-
- 'mkdocs.yml'
|
|
10
8
|
- '.github/workflows/mkdocs.yml'
|
|
11
9
|
jobs:
|
|
12
10
|
deploy:
|
|
@@ -41,4 +39,4 @@ jobs:
|
|
|
41
39
|
# file, or due to one of the dependencies becoming unavailable), which can prompt remedial action.
|
|
42
40
|
#
|
|
43
41
|
- name: Build MkDocs site
|
|
44
|
-
run: mkdocs build
|
|
42
|
+
run: mkdocs build -f docs/mkdocs.yml
|
|
@@ -83,9 +83,7 @@ jobs:
|
|
|
83
83
|
# run: |
|
|
84
84
|
# pip install flake8
|
|
85
85
|
# make lint
|
|
86
|
-
- name: Build and
|
|
86
|
+
- name: Build and start containers upon which test runner depends
|
|
87
87
|
run: make up-test
|
|
88
|
-
- name: Build container image for test runner
|
|
89
|
-
run: make test-build
|
|
90
88
|
- name: Run tests
|
|
91
|
-
run: make test
|
|
89
|
+
run: make run-test
|
|
@@ -16,6 +16,7 @@ eggs/
|
|
|
16
16
|
.eggs/
|
|
17
17
|
lib/
|
|
18
18
|
!/tests/lib/
|
|
19
|
+
!/nmdc_runtime/api/endpoints/lib/
|
|
19
20
|
lib64/
|
|
20
21
|
parts/
|
|
21
22
|
sdist/
|
|
@@ -119,7 +120,7 @@ venv.bak/
|
|
|
119
120
|
.ropeproject
|
|
120
121
|
|
|
121
122
|
# mkdocs documentation
|
|
122
|
-
/site
|
|
123
|
+
/docs/site
|
|
123
124
|
|
|
124
125
|
# mypy
|
|
125
126
|
.mypy_cache/
|
|
@@ -173,4 +174,5 @@ docker-build.sh
|
|
|
173
174
|
|
|
174
175
|
neon.db
|
|
175
176
|
neon_api_cache.sqlite
|
|
176
|
-
nmdc-db.nt.gz
|
|
177
|
+
nmdc-db.nt.gz
|
|
178
|
+
**/.claude/settings.local.json
|
|
@@ -38,41 +38,55 @@ update: update-deps init
|
|
|
38
38
|
up-dev:
|
|
39
39
|
docker compose up --build --force-recreate --detach --remove-orphans
|
|
40
40
|
|
|
41
|
+
down-dev:
|
|
42
|
+
docker compose down
|
|
43
|
+
|
|
41
44
|
# Restores the MongoDB dump residing in `./tests/nmdcdb` on the Docker host, into the MongoDB server in the dev stack.
|
|
42
|
-
|
|
45
|
+
reset-db-dev:
|
|
43
46
|
docker compose \
|
|
44
47
|
exec mongo /bin/bash -c "/mongorestore-nmdc-testdb.sh"
|
|
45
48
|
|
|
46
49
|
# Uses Docker Compose to build and spin up the stack upon which the `test` container (i.e. the test runner) depends.
|
|
47
|
-
#
|
|
48
|
-
# Note: This does not build or spin up the `test` container, itself, since the `test` container's Docker Compose service
|
|
49
|
-
# has the "donotstart" profile specified for it in `docker-compose.test.yml`.
|
|
50
|
-
#
|
|
51
50
|
up-test:
|
|
52
51
|
docker compose --file docker-compose.test.yml \
|
|
53
52
|
up --build --force-recreate --detach --remove-orphans
|
|
54
53
|
|
|
55
|
-
#
|
|
56
|
-
test
|
|
57
|
-
docker compose --file docker-compose.test.yml
|
|
54
|
+
# Tears down the `test` stack, including removing data volumes such as that for the test MongoDB database.
|
|
55
|
+
down-test:
|
|
56
|
+
docker compose --file docker-compose.test.yml down --volumes
|
|
58
57
|
|
|
59
58
|
# Restores the MongoDB dump residing in `./tests/nmdcdb` on the Docker host, into the MongoDB server in the test stack.
|
|
60
|
-
|
|
59
|
+
reset-db-test:
|
|
61
60
|
docker compose --file docker-compose.test.yml \
|
|
62
61
|
exec mongo /bin/bash -c "/mongorestore-nmdc-testdb.sh"
|
|
63
62
|
|
|
64
|
-
#
|
|
63
|
+
# Run tests on the started `test` stack, passing `ARGS` to `pytest` (see Tip below).
|
|
65
64
|
#
|
|
66
65
|
# Tip: If you append `ARGS=` and a file path to the `make` command, pytest will run only the tests defined in that file.
|
|
67
|
-
#
|
|
66
|
+
#
|
|
67
|
+
# Some examples, using `make test`:
|
|
68
|
+
# (You can also use `make run-test` if are sure you don't need to reset global state)
|
|
69
|
+
#
|
|
70
|
+
# To run only the tests defined in `tests/test_api/test_endpoints.py`:
|
|
71
|
+
# ```
|
|
72
|
+
# $ make test ARGS="tests/test_api/test_endpoints.py"
|
|
73
|
+
# ```
|
|
74
|
+
#
|
|
75
|
+
# To run only the test `test_find_data_objects_for_study_having_one` in `tests/test_api/test_endpoints.py`:
|
|
68
76
|
# ```
|
|
69
|
-
# $ make test
|
|
77
|
+
# $ make test ARGS="-k 'test_find_data_objects_for_study_having_one'"
|
|
70
78
|
# ```
|
|
71
79
|
#
|
|
72
|
-
test
|
|
73
|
-
docker compose --file docker-compose.test.yml
|
|
80
|
+
run-test:
|
|
81
|
+
docker compose --file docker-compose.test.yml exec -it test \
|
|
82
|
+
./.docker/wait-for-it.sh fastapi:8000 --strict --timeout=300 -- pytest --cov=nmdc_runtime \
|
|
83
|
+
$(ARGS)
|
|
74
84
|
|
|
75
|
-
|
|
85
|
+
# Uses Docker Compose to
|
|
86
|
+
# 1. Ensure the `test` stack is torn down, including data volumes such as that of the test MongoDB database.
|
|
87
|
+
# 2. Build and spin up the stack upon which the `test` container (i.e. the test runner) depends.
|
|
88
|
+
# 3. Run tests on the `test` container, passing `ARGS` to `pytest` (see Tip in comment above for `run-test` target).
|
|
89
|
+
test: down-test up-test run-test
|
|
76
90
|
|
|
77
91
|
black:
|
|
78
92
|
black nmdc_runtime
|
|
@@ -91,27 +105,13 @@ init-lint-and-black:
|
|
|
91
105
|
pip install $(PIP_PINNED_FLAKE8)
|
|
92
106
|
pip install $(PIP_PINNED_BLACK)
|
|
93
107
|
|
|
94
|
-
down-dev:
|
|
95
|
-
docker compose down
|
|
96
|
-
|
|
97
|
-
down-test:
|
|
98
|
-
docker compose --file docker-compose.test.yml down --volumes
|
|
99
|
-
|
|
100
108
|
follow-fastapi:
|
|
101
109
|
docker compose logs fastapi -f
|
|
102
110
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
dagster-deploy-spin:
|
|
107
|
-
rancher kubectl rollout restart deployment/dagit --namespace=nmdc-dev
|
|
108
|
-
rancher kubectl rollout restart deployment/dagster-daemon --namespace=nmdc-dev
|
|
109
|
-
|
|
110
|
-
publish:
|
|
111
|
-
invoke publish
|
|
112
|
-
|
|
111
|
+
# Build the MkDocs documentation website and serve it at http://localhost:8080.
|
|
112
|
+
# Docs: https://www.mkdocs.org/user-guide/cli/#mkdocs-serve
|
|
113
113
|
docs-dev:
|
|
114
|
-
mkdocs serve -
|
|
114
|
+
mkdocs serve --config-file docs/mkdocs.yml --dev-addr localhost:8080
|
|
115
115
|
|
|
116
116
|
# 🙋 Prerequisites:
|
|
117
117
|
#
|
|
@@ -127,7 +127,6 @@ nersc-sshproxy:
|
|
|
127
127
|
|
|
128
128
|
nersc-mongo-tunnels:
|
|
129
129
|
ssh -L27072:mongo-loadbalancer.nmdc.production.svc.spin.nersc.org:27017 \
|
|
130
|
-
-L28082:mongo-loadbalancer.nmdc-dev.development.svc.spin.nersc.org:27017 \
|
|
131
130
|
-L27092:mongo-loadbalancer.nmdc-dev.production.svc.spin.nersc.org:27017 \
|
|
132
131
|
-o ServerAliveInterval=60 \
|
|
133
132
|
${NERSC_USERNAME}@dtn02.nersc.gov
|
|
@@ -139,7 +138,14 @@ mongorestore-nmdc-db:
|
|
|
139
138
|
# export MONGO_REMOTE_DUMP_DIR=$(ssh -i ~/.ssh/nersc -q ${NERSC_USERNAME}@dtn01.nersc.gov 'bash -s ' < util/get_latest_nmdc_prod_dump_dir.sh 2>/dev/null)
|
|
140
139
|
# ```
|
|
141
140
|
# Rsync the remote dump directory items of interest:
|
|
142
|
-
rsync -av --no-perms
|
|
141
|
+
rsync -av --no-perms \
|
|
142
|
+
--exclude='*_agg\.*' \
|
|
143
|
+
--exclude='operations\.*' \
|
|
144
|
+
--exclude='_*' \
|
|
145
|
+
--exclude='ids_nmdc_sys0\.*' \
|
|
146
|
+
--exclude='query_runs\.*' \
|
|
147
|
+
--exclude='fs\.*' \
|
|
148
|
+
--exclude="alldocs\.*" \
|
|
143
149
|
-e "ssh -i ~/.ssh/nersc" \
|
|
144
150
|
${NERSC_USERNAME}@dtn01.nersc.gov:${MONGO_REMOTE_DUMP_DIR}/nmdc/ \
|
|
145
151
|
/tmp/remote-mongodump/nmdc
|
|
@@ -152,3 +158,15 @@ quick-blade:
|
|
|
152
158
|
|
|
153
159
|
.PHONY: init update-deps update up-dev down-dev follow-fastapi \
|
|
154
160
|
publish docs
|
|
161
|
+
|
|
162
|
+
docker-clean:
|
|
163
|
+
# Down the dev stack with volumes
|
|
164
|
+
-docker compose down --volumes --remove-orphans
|
|
165
|
+
# Down the test stack with volumes
|
|
166
|
+
-docker compose --file docker-compose.test.yml down --volumes --remove-orphans
|
|
167
|
+
# Remove any dangling images from this project
|
|
168
|
+
-docker image prune -f
|
|
169
|
+
# Remove the project-specific networks
|
|
170
|
+
-docker network rm nmdc-runtime-dev nmdc-runtime-test 2>/dev/null || true
|
|
171
|
+
# Remove the project-specific volumes
|
|
172
|
+
-docker volume rm nmdc-runtime-dev_mongo_data nmdc-runtime-dev_postgres_data nmdc-runtime-test_mongo_data nmdc-runtime-test_postgres_data 2>/dev/null || true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nmdc_runtime
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.8.0
|
|
4
4
|
Summary: A runtime system for NMDC data management and orchestration
|
|
5
5
|
Home-page: https://github.com/microbiomedata/nmdc-runtime
|
|
6
6
|
Author: Donny Winston
|
|
@@ -127,7 +127,8 @@ source .env
|
|
|
127
127
|
set +a
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
If you are connecting to resources that require an SSH tunnel—for example, a MongoDB server that is only accessible on
|
|
130
|
+
If you are connecting to resources that require an SSH tunnel—for example, a MongoDB server that is only accessible on
|
|
131
|
+
the NERSC network—set up the SSH tunnel.
|
|
131
132
|
|
|
132
133
|
The following command could be useful to you, either directly or as a template (see `Makefile`).
|
|
133
134
|
|
|
@@ -149,6 +150,19 @@ The Dagit web server is viewable at http://127.0.0.1:3000/.
|
|
|
149
150
|
The FastAPI service is viewable at http://127.0.0.1:8000/ -- e.g., rendered documentation at
|
|
150
151
|
http://127.0.0.1:8000/redoc/.
|
|
151
152
|
|
|
153
|
+
|
|
154
|
+
* NOTE: Any time you add or change requirements in requirements/main.in or requirements/dev.in, you must run:
|
|
155
|
+
```
|
|
156
|
+
pip-compile --build-isolation --allow-unsafe --resolver=backtracking --strip-extras --output-file requirements/[main|dev].txt requirements/[main|dev].in
|
|
157
|
+
```
|
|
158
|
+
to generate main.txt and dev.txt files respectively. main.in is kind of like a poetry dependency stanza, dev.in is kind
|
|
159
|
+
of like poetry dev.dependencies stanza. main.txt and dev.txt are kind of like poetry.lock files to specify the exact
|
|
160
|
+
versions of dependencies to use. main.txt and dev.txt are combined in the docker compose build process to create the
|
|
161
|
+
final requirements.txt file and import the dependencies into the Docker image.
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
|
|
152
166
|
## Local Testing
|
|
153
167
|
|
|
154
168
|
Tests can be found in `tests` and are run with the following commands:
|
|
@@ -160,12 +174,13 @@ make test
|
|
|
160
174
|
# Run a Specific test file eg. tests/test_api/test_endpoints.py
|
|
161
175
|
make test ARGS="tests/test_api/test_endpoints.py"
|
|
162
176
|
```
|
|
177
|
+
docker compose --file docker-compose.test.yml run test
|
|
163
178
|
|
|
164
179
|
As you create Dagster solids and pipelines, add tests in `tests/` to check that your code behaves as
|
|
165
180
|
desired and does not break over time.
|
|
166
181
|
|
|
167
182
|
[For hints on how to write tests for solids and pipelines in Dagster, see their documentation
|
|
168
|
-
tutorial on Testing](https://docs.dagster.io/
|
|
183
|
+
tutorial on Testing](https://docs.dagster.io/guides/test/unit-testing-assets-and-ops).
|
|
169
184
|
|
|
170
185
|
### RAM usage
|
|
171
186
|
|
|
@@ -104,7 +104,8 @@ source .env
|
|
|
104
104
|
set +a
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
-
If you are connecting to resources that require an SSH tunnel—for example, a MongoDB server that is only accessible on
|
|
107
|
+
If you are connecting to resources that require an SSH tunnel—for example, a MongoDB server that is only accessible on
|
|
108
|
+
the NERSC network—set up the SSH tunnel.
|
|
108
109
|
|
|
109
110
|
The following command could be useful to you, either directly or as a template (see `Makefile`).
|
|
110
111
|
|
|
@@ -126,6 +127,19 @@ The Dagit web server is viewable at http://127.0.0.1:3000/.
|
|
|
126
127
|
The FastAPI service is viewable at http://127.0.0.1:8000/ -- e.g., rendered documentation at
|
|
127
128
|
http://127.0.0.1:8000/redoc/.
|
|
128
129
|
|
|
130
|
+
|
|
131
|
+
* NOTE: Any time you add or change requirements in requirements/main.in or requirements/dev.in, you must run:
|
|
132
|
+
```
|
|
133
|
+
pip-compile --build-isolation --allow-unsafe --resolver=backtracking --strip-extras --output-file requirements/[main|dev].txt requirements/[main|dev].in
|
|
134
|
+
```
|
|
135
|
+
to generate main.txt and dev.txt files respectively. main.in is kind of like a poetry dependency stanza, dev.in is kind
|
|
136
|
+
of like poetry dev.dependencies stanza. main.txt and dev.txt are kind of like poetry.lock files to specify the exact
|
|
137
|
+
versions of dependencies to use. main.txt and dev.txt are combined in the docker compose build process to create the
|
|
138
|
+
final requirements.txt file and import the dependencies into the Docker image.
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
|
|
129
143
|
## Local Testing
|
|
130
144
|
|
|
131
145
|
Tests can be found in `tests` and are run with the following commands:
|
|
@@ -137,12 +151,13 @@ make test
|
|
|
137
151
|
# Run a Specific test file eg. tests/test_api/test_endpoints.py
|
|
138
152
|
make test ARGS="tests/test_api/test_endpoints.py"
|
|
139
153
|
```
|
|
154
|
+
docker compose --file docker-compose.test.yml run test
|
|
140
155
|
|
|
141
156
|
As you create Dagster solids and pipelines, add tests in `tests/` to check that your code behaves as
|
|
142
157
|
desired and does not break over time.
|
|
143
158
|
|
|
144
159
|
[For hints on how to write tests for solids and pipelines in Dagster, see their documentation
|
|
145
|
-
tutorial on Testing](https://docs.dagster.io/
|
|
160
|
+
tutorial on Testing](https://docs.dagster.io/guides/test/unit-testing-assets-and-ops).
|
|
146
161
|
|
|
147
162
|
### RAM usage
|
|
148
163
|
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cells": [
|
|
3
|
+
{
|
|
4
|
+
"cell_type": "markdown",
|
|
5
|
+
"id": "d05efc6327778f9c",
|
|
6
|
+
"metadata": {},
|
|
7
|
+
"source": [
|
|
8
|
+
"# Migrate MongoDB database from `nmdc-schema` `v11.6.0` to `v11.6.1`"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"cell_type": "markdown",
|
|
13
|
+
"id": "b99d5924e825b9a2",
|
|
14
|
+
"metadata": {},
|
|
15
|
+
"source": [
|
|
16
|
+
"There are no migrators associated with any schema changes between schema versions `v11.6.0` and `v11.6.1`. So, this notebook is a \"no op\" (i.e. \"no operation\")."
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"cell_type": "code",
|
|
21
|
+
"execution_count": null,
|
|
22
|
+
"id": "initial_id",
|
|
23
|
+
"metadata": {
|
|
24
|
+
"collapsed": true,
|
|
25
|
+
"jupyter": {
|
|
26
|
+
"is_executing": true
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"outputs": [],
|
|
30
|
+
"source": [
|
|
31
|
+
"# no op"
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"metadata": {
|
|
36
|
+
"kernelspec": {
|
|
37
|
+
"display_name": "Python 3",
|
|
38
|
+
"language": "python",
|
|
39
|
+
"name": "python3"
|
|
40
|
+
},
|
|
41
|
+
"language_info": {
|
|
42
|
+
"codemirror_mode": {
|
|
43
|
+
"name": "ipython",
|
|
44
|
+
"version": 2
|
|
45
|
+
},
|
|
46
|
+
"file_extension": ".py",
|
|
47
|
+
"mimetype": "text/x-python",
|
|
48
|
+
"name": "python",
|
|
49
|
+
"nbconvert_exporter": "python",
|
|
50
|
+
"pygments_lexer": "ipython2",
|
|
51
|
+
"version": "2.7.6"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"nbformat": 4,
|
|
55
|
+
"nbformat_minor": 5
|
|
56
|
+
}
|