nmdc-runtime 1.7.0__tar.gz → 1.9.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-1.9.0/.github/ISSUE_TEMPLATE/bug_report.md +45 -0
- nmdc_runtime-1.9.0/.github/ISSUE_TEMPLATE/feature_request.md +41 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.github/pull_request_template.md +2 -1
- nmdc_runtime-1.9.0/.github/workflows/build-and-release-to-spin-berkeley.yml +101 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/Makefile +9 -9
- {nmdc_runtime-1.7.0/nmdc_runtime.egg-info → nmdc_runtime-1.9.0}/PKG-INFO +1 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docker-compose.test.yml +4 -4
- nmdc_runtime-1.9.0/docs/nb/bulk_validation_referential_integrity_check.ipynb +747 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/core/metadata.py +13 -9
- nmdc_runtime-1.9.0/nmdc_runtime/api/db/mongo.py +145 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/find.py +69 -35
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/metadata.py +29 -21
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/nmdcschema.py +1 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/sites.py +10 -2
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/util.py +29 -6
- nmdc_runtime-1.9.0/nmdc_runtime/config.py +1 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/export/ncbi_xml.py +155 -28
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/export/ncbi_xml_utils.py +32 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/graphs.py +11 -2
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/ops.py +109 -17
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/repository.py +2 -2
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/submission_portal_translator.py +3 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/util.py +7 -5
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/util.py +32 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0/nmdc_runtime.egg-info}/PKG-INFO +1 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime.egg-info/SOURCES.txt +9 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/requirements/dev.txt +19 -25
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/requirements/main.in +1 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/requirements/main.txt +84 -106
- nmdc_runtime-1.9.0/tests/files/test_changesheet_insert_study_doi.tsv +5 -0
- nmdc_runtime-1.9.0/tests/files/test_changesheet_update_bytes_ranged_slot.tsv +2 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/mongorestore-nmdc-testdb.sh +1 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_api/test_endpoints.py +75 -12
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_api/test_metadata.py +42 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_ncbi_xml.py +64 -11
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_submission_portal_translator.py +0 -1
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_submission_portal_translator_data.yaml +8 -2
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_graphs/test_submission_portal_graphs.py +8 -9
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_ops/test_data_api_ops.py +16 -9
- nmdc_runtime-1.9.0/tests/test_ops/test_materialize_alldocs.py +37 -0
- nmdc_runtime-1.9.0/tests/test_ops/test_ops.py +89 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_util.py +28 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/util/mongodump-nmdc.sh +2 -3
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/util/mongorestore-nmdc.sh +1 -1
- nmdc_runtime-1.7.0/nmdc_runtime/api/db/mongo.py +0 -76
- nmdc_runtime-1.7.0/tests/test_ops/test_hello.py +0 -8
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.dockerignore +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.env.example +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.env.test +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.github/workflows/build-and-release-to-spin.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.github/workflows/lint.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.github/workflows/mkdocs.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.github/workflows/python-app.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.github/workflows/release-to-pypi.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.gitignore +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.gitpod.Dockerfile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.gitpod.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/.nvmrc +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/LICENSE +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/README.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/RELEASES.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/components/nmdc_runtime/workflow/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/components/nmdc_runtime/workflow/spec.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/components/nmdc_runtime/workflow_execution_activity/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/components/nmdc_runtime/workflow_execution_activity/core.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/components/nmdc_runtime/workflow_execution_activity/spec.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/components/nmdc_runtime/workflow_execution_activity/store.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/.env.example +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/GOLDs5levelEcosystemClassificationPaths.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/biosamples.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/console_queries.dev +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/docker-compose.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/envo.owl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/indexing.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_discovery/po.owl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/main.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/main.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/.gitignore +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/.mongo.yaml.example +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/.notebook.env.example +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/bookkeeper.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/helpers.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/manual_test_bookkeeper.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_10_0_0_to_10_1_4.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_10_3_0_to_10_4_0.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_7_7_2_to_7_8_0.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_7_8_0_to_8_0_0.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_8_0_0_to_8_1_2.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_8_1_2_to_9_0_4.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_9_0_4_to_9_1_0.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_9_1_0_to_9_2_0.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_9_3_2_to_10_0_0.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/migrate_A_B_C_to_X_Y_Z.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/requirements.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/stakeholders.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/demo/metadata_migration/notebooks/test_helpers.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docker-compose.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/admin.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/contributing-docs.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/draft.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/explanation/domain-vision-statement.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/explanation/identifiers.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/explanation/journeys.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/author-changesheets.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/claim-and-run-jobs.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/create-triggers.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/improving-search-api.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/jobs/gold-translation-etl.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/release-process.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/howto-guides/update-sensors-ops.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/auth-button.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/auth-client-id.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/auth-close-modal.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/auth-username.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/dagit-apply-changesheet-job.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/dagster-translation-gold-job.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/dagster-translation-gold-launchpad.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/dagster-translation-gold-overview.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/dagster-translation-repo-jobs.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/dagster-workspace-repo-loaded.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/job-triggering.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/list-from-collection-filter.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/list-from-collection-page-token.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/list-from-collection.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/metadata-in-dagit-runs.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/metadata-in-put-types.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/nmdc-runtime-federation.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/rancher-nmdc-runtime-dev-workloads.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/validate-json-copy-paste-execute.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/validate-json-get-one-valid.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/validate-json-response.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/validate-json-try-it-out.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/img/validate-json.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/index.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/nb/get_data.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/nb/queue_and_trigger_data_jobs.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/nb/wf_automation.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/stylesheets/extra.css +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/tutorials/auth.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/tutorials/json.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs/tutorials/metadata-in.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/api-resource-diagram.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/api-resource-layout.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/nmdc-runtime-api-resource-diagram.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/nmdc-wfe.ttl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/redoc-static.html +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/spec.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/design/workflow-automation.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/docs_prev/index.html +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/flake.lock +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/flake.nix +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/github_secrets_to_dotenv.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/guix-manifest.scm +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/Makefile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/README.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/Froze_Core_2015_S2_0_10_7_Metab.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/MAGs_activity.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/biosample_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/changesheet-ex-01-screenshot.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/changesheet-ex-01.csv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/emsl_data_object_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/emsl_project_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/feature-set.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/ftms_nom_data_products.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/functional-annotation.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/gcms_metabolomics_data_products.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/gold_project_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/img_mg_annotation_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/img_mg_annotation_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/metagenome_annotation_activity.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/mg_assembly_activities_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/mg_assembly_data_objects_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/migs-template-cedar.schema.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/nom_analysis_activity.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/readQC_activities_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/readQC_data_objects_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/read_based_analysis_activity.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/examples/study_test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/images/nmdc-etl-workflow.drawio +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/images/nmdc-etl-workflow.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/images/nmdc-etl-workflow.svg +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/Description_MIxS_Packages_v5.docx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/GOLD-Paths-to-MIxS-ENVO-triad-mapping.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSair_20180621_GOLD_Mapping_04132020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSbuiltenv_20180621_GOLD_Mapping_04172020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShostassoc_20180621_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShumanassoc_20180621_GOLD_Mapping_04142020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShumangut_20180621_GOLD_Mapping_04152020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShumanoral_20180621_GOLD_Mapping_04152020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShumanskin_20180621_GOLD_Mapping_04162020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShumanvaginal_20180621_GOLD_04162020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShydrocarbCores_20180621_Mapping_GOLD.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxShydrocarbfs_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSmatbiofilm_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSmisc_20180621_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSplantassoc_20180621_v5_GOLD_Mapping.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSsediment_20180621_GOLD_Mapping_04102020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSsoil_20180621_GOLD_Mapping_04102020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSwastesludge_20180621_GOLD_Mapping_Apr-10.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/MIxSwater_20180621_GOLD_Mapping_04122020.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/Makefile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/README.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/mixs_v4.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/mapping-files/mixs_v5.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/202106_curation_updates.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/202106_workflow_execution_demo.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/202109_metadata_ingest.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/NMDC-GOLD-data-counts.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/README.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/archive/generate-gold-sample-json.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/archive/translate-30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/changesheets-example.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/changesheets-testing.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-array-item-nested-attributes.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-insert.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-remove-item.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-remove-property.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-replace.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-update-pi-websites.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-with-separator1.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-without-separator1.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-without-separator2.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/changesheet-without-separator3.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/study-data1.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/study-data2.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/data/study-data3.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/ensure_biosample_set_study_id.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/ghissue_252_253_linked_samples.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/ghissue_255.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/ghissue_272.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/gold-biosample-null-value-analysis.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/gold_ids_to_igsns.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/images/EMSL-data-translation.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/images/GOLD-data-objects-translation.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/images/GOLD-study-project-biosample-translation.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/images/NMDC-jupyter-translation-workflow.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/metaP_stegen.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/metadata_db_admin.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/mongo_etl_demo.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/FICUS-projects-merged.owl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/FICUS-projects-merged.owl.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/FICUS-projects-translation.owl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/catalog-v001.xml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.json.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/gold-dataset-translation.owl +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json/biosample.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json/data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json/omics_processing.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json/study.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-01.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-05.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-06.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-12.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-18.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-19.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/schema-test-full.txt.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/schema-test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/schema-test.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/schema-test.txt.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/temp.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-five-biosamples/biosample.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-five-biosamples/data_object.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-five-biosamples/project.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-five-biosamples/study.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/biosample.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/emsl_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/emsl_omics_processing.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/faa_fna_fastq_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/gold_omics_processing.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/gold_study.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline/nmdc-02.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/output/test-pipeline.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test-changesheet-with-separator.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test-changesheet-without-separator.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test-output.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test-pipeline-scratch.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test-pipeline-temp.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test-pipeline.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/test.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/translate-EMSL-data.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/translate-GOLD-data-objects.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/translate-GOLD-study-project-biosample.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/notebooks/translation-pipeline.ipynb +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/align_nmdc_datatypes.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/execute_etl_pipeline.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/fix_omics_processing_json.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/data_operations.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/extract_nmdc_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/load_nmdc_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/nmdc_data_source.yaml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/nmdc_dataframes.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/nmdc_etl_class.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/lib/transform_nmdc_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/mandatory_mixs_terms.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/mandatory_mixs_terms.py.org +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/bin/validate_json.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/2020-23-12-brodie-Gs0135149-soil-metadata.csv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/2021-02-03-stegen_biosample_linking_update.csv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/2021-02-04-brodie_biosample_linking_update.csv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/2021-02-04-stegen_biosample_template.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/2021-07-02-study-changes.csv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/EMSL_FICUS_project_process_data_export.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/EMSL_Hess_Stegen_Blanchard_DatasetToMetagenomeMapping.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/EMSL_biosample_matches.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/FICUS - JGI-EMSL Proposal - Gold Study - ID mapping and PI.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/GOLD-soil-mixs-envo-mappings.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/GOLD-to-mixs-map.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/GOLD_Ecosystem_Classification_Paths_10152019.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/GOLD_ecosystem_classification_paths.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/JGI-EMSL-FICUS-proposals.fnl.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/NMDC-GOLD-Fields.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/README.md +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/Hess_emsl_analysis_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/Hess_metaproteomic_analysis_activities.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/Stegen_emsl_analysis_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/Stegen_metaproteomic_analysis_activities.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_activities.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_activities.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/readQC_activities.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/aim-2-workflows/readQC_data_objects.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/all_gold_fields.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/ficus_project_faa.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/ficus_project_fastq.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/ficus_project_fna.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/mixs_v5.xlsx +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/nmdc-version2.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/metadata-translation/src/data/nmdc-version5.zip +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/mkdocs.yml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/mkdocs_overrides/partials/source.html +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/mongoKeyFile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nersc-sshproxy.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc-wfe.html +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/analytics.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/boot/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/boot/capabilities.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/boot/object_types.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/boot/triggers.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/boot/workflows.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/core/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/core/auth.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/core/idgen.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/core/util.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/db/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/db/s3.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/capabilities.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/ids.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/jobs.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/object_types.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/objects.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/operations.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/queries.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/runs.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/search.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/triggers.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/users.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/endpoints/workflows.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/entrypoint.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/main.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/capability.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/id.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/job.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/metadata.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/minter.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/nmdc_schema.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/object.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/object_type.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/operation.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/query.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/run.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/site.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/trigger.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/user.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/util.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/models/workflow.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/models/ingest.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/models/users.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/models/workflow_execution_activity.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/outputs.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/router.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/users.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/workflows/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/workflows/activities/router.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/api/v1/workflows/activities.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/client/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/containers.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/core/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/core/db/Database.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/core/db/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/core/exceptions/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/core/exceptions/base.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/core/exceptions/token.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/dagster.Dockerfile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/domain/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/domain/users/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/domain/users/queriesInterface.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/domain/users/userSchema.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/domain/users/userService.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/fastapi.Dockerfile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/db.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/impl/mongo/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/impl/mongo/db.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/impl/mongo/models/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/impl/mongo/models/user.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/models/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/infrastructure/database/models/user.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/extract_nmdc_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/load_nmdc_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/nmdc_data_source.yaml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/nmdc_dataframes.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/nmdc_etl_class.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/lib/transform_nmdc_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/main.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/adapters/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/adapters/repository.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/bootstrap.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/config.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/domain/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/domain/model.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/entrypoints/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/minter/entrypoints/fastapi_app.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/backup/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/backup/nmdcdb_mongodump.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/backup/nmdcdb_mongoexport.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/backup/nmdcdb_mongoimport.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/changesheets/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/changesheets/base.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/changesheets/data/OmicsProcessing-to-catted-Biosamples.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/changesheets/scripts/missing_neon_soils_ecosystem_data.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/changesheets/scripts/neon_soils_add_ncbi_ids.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/dagster.yaml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/drsobjects/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/drsobjects/ingest.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/drsobjects/registration.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/entrypoint-daemon.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/entrypoint-dagit-readonly.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/entrypoint-dagit.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/export/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/export/study_metadata.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/normalization/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/normalization/gold.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/resources.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/emsl.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/gold.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/gold_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/jgi.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/neon_benthic_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/neon_soil_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/neon_surface_water_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/neon_utils.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/translation/util.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/validation/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/validation/emsl.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/validation/gold.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/validation/jgi.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/validation/util.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/site/workspace.yaml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/static/ORCIDiD_icon128x128.png +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/static/favicon.ico +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/templates/pipeline_search.html +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/templates/search.html +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime/test.Dockerfile +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime.egg-info/dependency_links.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime.egg-info/entry_points.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/nmdc_runtime.egg-info/top_level.txt +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/requirements/dev.in +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/setup.cfg +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/setup.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tasks.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/conftest.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/e2e/test_minter_api.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/files/nmdc_bsm-11-5nhz3402.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/files/nmdc_bsm-12-7mysck21.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/files/nmdc_dobj-11-000n1286.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/files/nmdc_sty-11-pzmd0x14.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/files/test_changesheet_update_one_ph.tsv +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/integration/test_minter_repository.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/mongodump-nmdc-testdb.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/nmdcdb.test.archive.gz +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_api/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_api/test_db_mongo.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_api/util.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/conftest.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_gold_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_gold_translator_data.yaml +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_integrity.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_neon_benthic_data_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_data/test_neon_soil_data_translator.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_graphs/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_graphs/ensure_jobs.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_graphs/test_hello.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_normalization/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_normalization/test_gold.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_ops/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_ops/test_get_csv_rows_from_url.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/test_ops/test_gold_api_ops.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/unit/core_util.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests/unit/test_minter_model.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests2/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests2/domain/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests2/domain/service/__init__.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tests2/domain/service/test_user_service.py +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/tmp.json +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/wait-for-it.sh +0 -0
- {nmdc_runtime-1.7.0 → nmdc_runtime-1.9.0}/workspace.toml +0 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us debug
|
|
4
|
+
title: ''
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Steps to reproduce the behavior:
|
|
15
|
+
1. Go to '...'
|
|
16
|
+
2. Click on '....'
|
|
17
|
+
3. Scroll down to '....'
|
|
18
|
+
4. See error
|
|
19
|
+
|
|
20
|
+
**Expected behavior**
|
|
21
|
+
A clear and concise description of what you expected to happen.
|
|
22
|
+
|
|
23
|
+
Example user story template:
|
|
24
|
+
AS A {user|persona|system},
|
|
25
|
+
[INSTEAD OF {current condition}]
|
|
26
|
+
I EXPECTED {result}
|
|
27
|
+
[SO THAT {value or justification}]
|
|
28
|
+
[NO LATER THAN {best by date}]
|
|
29
|
+
|
|
30
|
+
**Screenshots**
|
|
31
|
+
If applicable, add screenshots to help explain your problem.
|
|
32
|
+
|
|
33
|
+
**Acceptance Criteria**
|
|
34
|
+
- Clear to everyone involved
|
|
35
|
+
- Can be tested or verified
|
|
36
|
+
- Either passes or fails (cannot be 50% completed, for example)
|
|
37
|
+
- Focus on the outcome, not how the outcome is achieved
|
|
38
|
+
- As specific as possible (fast page load speed vs. 3-second page load speed)
|
|
39
|
+
- if multiple criteria, present as a bulleted list of short scenarios (see template below)
|
|
40
|
+
|
|
41
|
+
Example scenario-based template:
|
|
42
|
+
Given (some given context or precondition), when (I take this action), then (this will be the specific outcome).
|
|
43
|
+
|
|
44
|
+
**Additional context**
|
|
45
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Screenshots**
|
|
14
|
+
If applicable, add screenshots to help explain your problem.
|
|
15
|
+
|
|
16
|
+
**Describe the solution you'd like**
|
|
17
|
+
A clear and concise description of what you want to happen.
|
|
18
|
+
|
|
19
|
+
Example user story template:
|
|
20
|
+
AS A {user|persona|system},
|
|
21
|
+
[INSTEAD OF {current condition}]
|
|
22
|
+
I WANT TO {action} [IN {mode} TIME | IN {differentiating performance units} TO {utility performance units}]
|
|
23
|
+
[SO THAT {value or justification}]
|
|
24
|
+
[NO LATER THAN {best by date}]
|
|
25
|
+
|
|
26
|
+
**Acceptance Criteria**
|
|
27
|
+
- Clear to everyone involved
|
|
28
|
+
- Can be tested or verified
|
|
29
|
+
- Either passes or fails (cannot be 50% completed, for example)
|
|
30
|
+
- Focus on the outcome, not how the outcome is achieved
|
|
31
|
+
- As specific as possible (fast page load speed vs. 3-second page load speed)
|
|
32
|
+
- if multiple criteria, present as a bulleted list of short scenarios (see template below)
|
|
33
|
+
|
|
34
|
+
Example scenario-based template:
|
|
35
|
+
Given (some given context or precondition), when (I take this action), then (this will be the specific outcome).
|
|
36
|
+
|
|
37
|
+
**Describe alternatives you've considered**
|
|
38
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
39
|
+
|
|
40
|
+
**Additional context**
|
|
41
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -24,7 +24,8 @@ Please describe the tests that you ran to verify your changes. Provide instructi
|
|
|
24
24
|
|
|
25
25
|
**Configuration Details**: none
|
|
26
26
|
|
|
27
|
-
# Checklist:
|
|
27
|
+
# Definition of Done (DoD) Checklist:
|
|
28
|
+
A simple checklist of necessary activities that add verifiable/demonstrable value to the product by asserting the quality of a feature, not the functionality of that feature; the latter should be stated as acceptance criteria in the issue this PR closes. Not all activities in the PR template will be applicable to each feature since the definition of done is intended to be a comprehensive checklist. Consciously decide the applicability of value-added activities on a feature-by-feature basis.
|
|
28
29
|
|
|
29
30
|
- [ ] My code follows the style guidelines of this project (have you run `black nmdc_runtime/`?)
|
|
30
31
|
- [ ] I have performed a self-review of my code
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# Note: This GitHub Actions workflow was initialized by copy/pasting the contents of `build-and-release-to-spin.yml`.
|
|
2
|
+
# Changes made here since then include:
|
|
3
|
+
# - Changed the triggering branch to `berkeley` (was `main`)
|
|
4
|
+
# - Excluded Git tag creation from triggering criteria
|
|
5
|
+
# - Hard-coded the Spin namespace as `nmdc-berkeley` for deployment
|
|
6
|
+
# - Disabled pushing to Docker Hub (only push to GHCR)
|
|
7
|
+
# - Changed tagging rules to, effectively, "always tag as :berkeley"
|
|
8
|
+
|
|
9
|
+
name: Build Docker images and release to Spin (nmdc-berkeley)
|
|
10
|
+
|
|
11
|
+
on:
|
|
12
|
+
push:
|
|
13
|
+
branches:
|
|
14
|
+
- berkeley # the `berkeley` branch, not the `main` branch
|
|
15
|
+
paths:
|
|
16
|
+
- '.github/workflows/build-and-release-to-spin-berkeley.yml'
|
|
17
|
+
- 'Makefile'
|
|
18
|
+
- '**.Dockerfile'
|
|
19
|
+
- '**.py'
|
|
20
|
+
- 'requirements/main.txt'
|
|
21
|
+
|
|
22
|
+
env:
|
|
23
|
+
# We don't want to do certain steps if this is running in a fork
|
|
24
|
+
IS_ORIGINAL_REPO: ${{ github.repository == 'microbiomedata/nmdc-runtime' }}
|
|
25
|
+
|
|
26
|
+
# Used when sending redeploy action requests to Rancher
|
|
27
|
+
RANCHER_NAMESPACE: 'nmdc-berkeley'
|
|
28
|
+
|
|
29
|
+
jobs:
|
|
30
|
+
build:
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
|
|
33
|
+
strategy:
|
|
34
|
+
matrix:
|
|
35
|
+
image: [ fastapi, dagster ]
|
|
36
|
+
|
|
37
|
+
steps:
|
|
38
|
+
- name: Checkout
|
|
39
|
+
uses: actions/checkout@v4
|
|
40
|
+
with:
|
|
41
|
+
# history for all branches and tags is needed for setuptools-scm (part of build and push step)
|
|
42
|
+
fetch-depth: 0
|
|
43
|
+
|
|
44
|
+
- name: Set up QEMU
|
|
45
|
+
uses: docker/setup-qemu-action@v3
|
|
46
|
+
|
|
47
|
+
- name: Set up Docker Buildx
|
|
48
|
+
uses: docker/setup-buildx-action@v3
|
|
49
|
+
|
|
50
|
+
- name: Docker meta
|
|
51
|
+
id: meta
|
|
52
|
+
uses: docker/metadata-action@v5
|
|
53
|
+
with:
|
|
54
|
+
images: |
|
|
55
|
+
ghcr.io/microbiomedata/nmdc-runtime-${{ matrix.image }}
|
|
56
|
+
flavor: |
|
|
57
|
+
latest=false
|
|
58
|
+
tags: |
|
|
59
|
+
type=raw,value=berkeley
|
|
60
|
+
|
|
61
|
+
- name: Login to DockerHub
|
|
62
|
+
uses: docker/login-action@v3
|
|
63
|
+
with:
|
|
64
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
65
|
+
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
66
|
+
|
|
67
|
+
# Reference: https://docs.docker.com/build/ci/github-actions/push-multi-registries/
|
|
68
|
+
# Reference: https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
|
|
69
|
+
- name: Login to GitHub Container Registry
|
|
70
|
+
uses: docker/login-action@v3
|
|
71
|
+
with:
|
|
72
|
+
registry: ghcr.io
|
|
73
|
+
username: ${{ github.actor }}
|
|
74
|
+
password: ${{ secrets.GITHUB_TOKEN }}
|
|
75
|
+
|
|
76
|
+
- name: Build and push
|
|
77
|
+
uses: docker/build-push-action@v5
|
|
78
|
+
with:
|
|
79
|
+
context: .
|
|
80
|
+
push: ${{ env.IS_ORIGINAL_REPO }}
|
|
81
|
+
file: nmdc_runtime/${{ matrix.image }}.Dockerfile
|
|
82
|
+
tags: ${{ steps.meta.outputs.tags }}
|
|
83
|
+
labels: ${{ steps.meta.outputs.labels }}
|
|
84
|
+
|
|
85
|
+
release:
|
|
86
|
+
needs: build
|
|
87
|
+
|
|
88
|
+
runs-on: ubuntu-latest
|
|
89
|
+
|
|
90
|
+
strategy:
|
|
91
|
+
matrix:
|
|
92
|
+
deployment: [ runtime-api, dagster-dagit, dagster-daemon ]
|
|
93
|
+
|
|
94
|
+
steps:
|
|
95
|
+
- name: Redeploy ${{ env.RANCHER_NAMESPACE }}:${{ matrix.deployment }}
|
|
96
|
+
if: ${{ env.IS_ORIGINAL_REPO }}
|
|
97
|
+
uses: fjogeleit/http-request-action@v1
|
|
98
|
+
with:
|
|
99
|
+
url: ${{ secrets.RANCHER_URL }}/v3/project/${{ secrets.RANCHER_CONTEXT }}/workloads/deployment:${{ env.RANCHER_NAMESPACE }}:${{ matrix.deployment }}?action=redeploy
|
|
100
|
+
method: POST
|
|
101
|
+
bearerToken: ${{ secrets.RANCHER_TOKEN }}
|
|
@@ -69,7 +69,7 @@ down-dev:
|
|
|
69
69
|
docker compose down
|
|
70
70
|
|
|
71
71
|
down-test:
|
|
72
|
-
docker compose --file docker-compose.test.yml down
|
|
72
|
+
docker compose --file docker-compose.test.yml down --volumes
|
|
73
73
|
|
|
74
74
|
follow-fastapi:
|
|
75
75
|
docker compose logs fastapi -f
|
|
@@ -97,14 +97,14 @@ nersc-mongo-tunnels:
|
|
|
97
97
|
-o ServerAliveInterval=60 \
|
|
98
98
|
${NERSC_USERNAME}@dtn02.nersc.gov
|
|
99
99
|
|
|
100
|
-
mongorestore-nmdc-
|
|
101
|
-
|
|
102
|
-
tar
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
100
|
+
mongorestore-nmdc-db:
|
|
101
|
+
mkdir -p /tmp/remote-mongodump/nmdc
|
|
102
|
+
# SSH into the remote server, stream the dump directory as a gzipped tar archive, and extract it locally.
|
|
103
|
+
ssh -i ~/.ssh/nersc ${NERSC_USERNAME}@dtn01.nersc.gov \
|
|
104
|
+
'tar -czf - -C /global/cfs/projectdirs/m3408/nmdc-mongodumps/dump_nmdc-prod_2024-07-29_20-12-07/nmdc .' \
|
|
105
|
+
| tar -xzv -C /tmp/remote-mongodump/nmdc
|
|
106
|
+
mongorestore -v -h localhost:27018 -u admin -p root --authenticationDatabase=admin \
|
|
107
|
+
--drop --nsInclude='nmdc.*' --dir /tmp/remote-mongodump
|
|
108
108
|
|
|
109
109
|
quick-blade:
|
|
110
110
|
python -c "from nmdc_runtime.api.core.idgen import generate_id; print(f'nmdc:nt-11-{generate_id(length=8, split_every=0)}')"
|
|
@@ -9,7 +9,7 @@ services:
|
|
|
9
9
|
image: postgres:11
|
|
10
10
|
container_name: dagster-postgresql
|
|
11
11
|
volumes:
|
|
12
|
-
-
|
|
12
|
+
- nmdc_runtime_test_postgres_data:/var/lib/postgresql/data
|
|
13
13
|
environment:
|
|
14
14
|
POSTGRES_USER: "postgres_user"
|
|
15
15
|
POSTGRES_PASSWORD: "postgres_password"
|
|
@@ -80,7 +80,7 @@ services:
|
|
|
80
80
|
ports:
|
|
81
81
|
- "27018:27017"
|
|
82
82
|
volumes:
|
|
83
|
-
-
|
|
83
|
+
- nmdc_runtime_test_mongo_data:/data/db
|
|
84
84
|
- ~/nmdcdb-mongodump:/nmdc_dump:ro
|
|
85
85
|
- ./tests/mongorestore-nmdc-testdb.sh:/mongorestore-nmdc-testdb.sh:ro
|
|
86
86
|
restart: unless-stopped
|
|
@@ -106,7 +106,7 @@ services:
|
|
|
106
106
|
- .:/code
|
|
107
107
|
|
|
108
108
|
volumes:
|
|
109
|
-
|
|
109
|
+
nmdc_runtime_test_postgres_data:
|
|
110
110
|
driver: local
|
|
111
|
-
|
|
111
|
+
nmdc_runtime_test_mongo_data:
|
|
112
112
|
driver: local
|