nmdc-runtime 2.2.0__tar.gz → 2.3.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.

Files changed (541) hide show
  1. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/pull_request_template.md +2 -2
  2. nmdc_runtime-2.3.0/.github/workflows/deploy-redirects.yml +93 -0
  3. nmdc_runtime-2.3.0/.github/workflows/mkdocs.yml +45 -0
  4. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/workflows/python-app.yml +13 -1
  5. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/Makefile +13 -5
  6. {nmdc_runtime-2.2.0/nmdc_runtime.egg-info → nmdc_runtime-2.3.0}/PKG-INFO +10 -2
  7. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/claim-and-run-jobs.md +1 -1
  8. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/jobs/gold-translation-etl.md +3 -3
  9. nmdc_runtime-2.3.0/docs/nb/api_access_via_python.ipynb +571 -0
  10. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-without-separator3.tsv +2 -2
  11. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/mkdocs.yml +1 -0
  12. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/find.py +4 -2
  13. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/metadata.py +6 -3
  14. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/queries.py +11 -9
  15. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/main.py +16 -0
  16. nmdc_runtime-2.3.0/nmdc_runtime/minter/config.py +80 -0
  17. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/graphs.py +39 -0
  18. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/ops.py +125 -28
  19. nmdc_runtime-2.3.0/nmdc_runtime/site/repair/database_updater.py +230 -0
  20. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/repository.py +101 -1
  21. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/resources.py +36 -5
  22. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/gold_translator.py +26 -4
  23. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/util.py +7 -2
  24. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/workspace.yaml +1 -1
  25. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/util.py +143 -1
  26. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0/nmdc_runtime.egg-info}/PKG-INFO +10 -2
  27. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime.egg-info/SOURCES.txt +8 -0
  28. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/requirements/dev.txt +14 -14
  29. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/requirements/main.in +4 -1
  30. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/requirements/main.txt +86 -72
  31. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_api/test_endpoints.py +195 -11
  32. nmdc_runtime-2.3.0/tests/test_data/test_database_updater.py +235 -0
  33. nmdc_runtime-2.3.0/tests/test_ops/__init__.py +0 -0
  34. nmdc_runtime-2.3.0/tests/test_the_util/README.md +25 -0
  35. nmdc_runtime-2.3.0/tests/test_the_util/__init__.py +0 -0
  36. nmdc_runtime-2.3.0/tests/test_the_util/test_the_util.py +217 -0
  37. nmdc_runtime-2.2.0/.github/workflows/mkdocs.yml +0 -30
  38. nmdc_runtime-2.2.0/nmdc_runtime/minter/config.py +0 -112
  39. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.dockerignore +0 -0
  40. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.env.example +0 -0
  41. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.env.test +0 -0
  42. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  43. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  44. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/workflows/build-and-release-to-spin.yml +0 -0
  45. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/workflows/lint.yml +0 -0
  46. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.github/workflows/release-to-pypi.yml +0 -0
  47. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.gitignore +0 -0
  48. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.gitpod.Dockerfile +0 -0
  49. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.gitpod.yml +0 -0
  50. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/.nvmrc +0 -0
  51. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/LICENSE +0 -0
  52. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/README.md +0 -0
  53. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/RELEASES.md +0 -0
  54. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/components/nmdc_runtime/workflow/__init__.py +0 -0
  55. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/components/nmdc_runtime/workflow/spec.py +0 -0
  56. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/components/nmdc_runtime/workflow_execution_activity/__init__.py +0 -0
  57. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/components/nmdc_runtime/workflow_execution_activity/core.py +0 -0
  58. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/components/nmdc_runtime/workflow_execution_activity/spec.py +0 -0
  59. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/components/nmdc_runtime/workflow_execution_activity/store.py +0 -0
  60. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/README.md +0 -0
  61. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/README.md +0 -0
  62. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/.gitignore +0 -0
  63. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/.notebook.env.example +0 -0
  64. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/bookkeeper.py +0 -0
  65. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/helpers.py +0 -0
  66. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/manual_test_bookkeeper.py +0 -0
  67. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_10_0_0_to_10_1_4.ipynb +0 -0
  68. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_10_3_0_to_10_4_0.ipynb +0 -0
  69. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_10_4_0_to_10_9_1.ipynb +0 -0
  70. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_10_9_1_to_11_0_0.ipynb +0 -0
  71. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_11_0_0_to_11_0_1.ipynb +0 -0
  72. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_11_0_3_to_11_1_0.ipynb +0 -0
  73. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_11_1_0_to_11_2_1.ipynb +0 -0
  74. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_7_7_2_to_7_8_0.ipynb +0 -0
  75. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_7_8_0_to_8_0_0.ipynb +0 -0
  76. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_8_0_0_to_8_1_2.ipynb +0 -0
  77. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_8_1_2_to_9_0_4.ipynb +0 -0
  78. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_9_0_4_to_9_1_0.ipynb +0 -0
  79. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_9_1_0_to_9_2_0.ipynb +0 -0
  80. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_9_3_2_to_10_0_0.ipynb +0 -0
  81. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/migrate_A_B_C_to_X_Y_Z.ipynb +0 -0
  82. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/mongosh-scripts/restore-privileges.mongo.js +0 -0
  83. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/mongosh-scripts/revoke-privileges.mongo.js +0 -0
  84. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/requirements.txt +0 -0
  85. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/stakeholders.md +0 -0
  86. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/db/migrations/notebooks/test_helpers.py +0 -0
  87. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/.env.example +0 -0
  88. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/GOLDs5levelEcosystemClassificationPaths.xlsx +0 -0
  89. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/biosamples.json +0 -0
  90. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/console_queries.dev +0 -0
  91. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/docker-compose.yml +0 -0
  92. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/envo.owl +0 -0
  93. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/indexing.ipynb +0 -0
  94. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_discovery/po.owl +0 -0
  95. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_migration/__init__.py +0 -0
  96. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_migration/main.ipynb +0 -0
  97. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/demo/metadata_migration/main.py +0 -0
  98. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docker-compose.test.yml +0 -0
  99. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docker-compose.yml +0 -0
  100. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/admin.md +0 -0
  101. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/contributing-docs.md +0 -0
  102. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/draft.md +0 -0
  103. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/explanation/domain-vision-statement.md +0 -0
  104. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/explanation/identifiers.md +0 -0
  105. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/explanation/journeys.md +0 -0
  106. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/author-changesheets.md +0 -0
  107. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/create-triggers.md +0 -0
  108. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/improving-search-api.md +0 -0
  109. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/release-process.md +0 -0
  110. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/howto-guides/update-sensors-ops.md +0 -0
  111. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/auth-button.png +0 -0
  112. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/auth-client-id.png +0 -0
  113. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/auth-close-modal.png +0 -0
  114. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/auth-username.png +0 -0
  115. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/dagit-apply-changesheet-job.png +0 -0
  116. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/dagster-translation-gold-job.png +0 -0
  117. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/dagster-translation-gold-launchpad.png +0 -0
  118. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/dagster-translation-gold-overview.png +0 -0
  119. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/dagster-translation-repo-jobs.png +0 -0
  120. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/dagster-workspace-repo-loaded.png +0 -0
  121. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/exporters-dagit.png +0 -0
  122. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/job-triggering.png +0 -0
  123. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/list-from-collection-filter.png +0 -0
  124. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/list-from-collection-page-token.png +0 -0
  125. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/list-from-collection.png +0 -0
  126. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/metadata-in-dagit-runs.png +0 -0
  127. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/metadata-in-put-types.png +0 -0
  128. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/nmdc-runtime-federation.png +0 -0
  129. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/rancher-nmdc-runtime-dev-workloads.png +0 -0
  130. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/translators-dagit.png +0 -0
  131. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/validate-json-copy-paste-execute.png +0 -0
  132. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/validate-json-get-one-valid.png +0 -0
  133. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/validate-json-response.png +0 -0
  134. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/validate-json-try-it-out.png +0 -0
  135. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/img/validate-json.png +0 -0
  136. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/index.md +0 -0
  137. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/nb/bulk_validation_referential_integrity_check.ipynb +0 -0
  138. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/nb/get_data.ipynb +0 -0
  139. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/nb/queue_and_trigger_data_jobs.ipynb +0 -0
  140. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/nb/wf_automation.ipynb +0 -0
  141. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/stylesheets/extra.css +0 -0
  142. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/tutorials/auth.md +0 -0
  143. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/tutorials/exporters.md +0 -0
  144. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/tutorials/json.md +0 -0
  145. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/tutorials/metadata-in.md +0 -0
  146. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs/tutorials/translators.md +0 -0
  147. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/api-resource-diagram.md +0 -0
  148. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/api-resource-layout.md +0 -0
  149. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/nmdc-runtime-api-resource-diagram.png +0 -0
  150. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/nmdc-wfe.ttl +0 -0
  151. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/redoc-static.html +0 -0
  152. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/spec.md +0 -0
  153. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/design/workflow-automation.md +0 -0
  154. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/docs_prev/index.html +0 -0
  155. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/flake.lock +0 -0
  156. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/flake.nix +0 -0
  157. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/github_secrets_to_dotenv.sh +0 -0
  158. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/guix-manifest.scm +0 -0
  159. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/Makefile +0 -0
  160. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/README.md +0 -0
  161. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/__init__.py +0 -0
  162. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/Froze_Core_2015_S2_0_10_7_Metab.json +0 -0
  163. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/MAGs_activity.json +0 -0
  164. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/biosample_test.json +0 -0
  165. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/changesheet-ex-01-screenshot.png +0 -0
  166. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/changesheet-ex-01.csv +0 -0
  167. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/emsl_data_object_test.json +0 -0
  168. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/emsl_project_test.json +0 -0
  169. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/feature-set.json +0 -0
  170. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/ftms_nom_data_products.json +0 -0
  171. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/functional-annotation.json +0 -0
  172. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/gcms_metabolomics_data_products.json +0 -0
  173. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/gold_project_test.json +0 -0
  174. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/img_mg_annotation_data_objects.json +0 -0
  175. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/img_mg_annotation_objects.json +0 -0
  176. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/metagenome_annotation_activity.json +0 -0
  177. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/mg_assembly_activities_test.json +0 -0
  178. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/mg_assembly_data_objects_test.json +0 -0
  179. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/migs-template-cedar.schema.json +0 -0
  180. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/nom_analysis_activity.json +0 -0
  181. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/readQC_activities_test.json +0 -0
  182. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/readQC_data_objects_test.json +0 -0
  183. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/read_based_analysis_activity.json +0 -0
  184. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/examples/study_test.json +0 -0
  185. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/images/nmdc-etl-workflow.drawio +0 -0
  186. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/images/nmdc-etl-workflow.png +0 -0
  187. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/images/nmdc-etl-workflow.svg +0 -0
  188. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/Description_MIxS_Packages_v5.docx +0 -0
  189. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/GOLD-Paths-to-MIxS-ENVO-triad-mapping.xlsx +0 -0
  190. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSair_20180621_GOLD_Mapping_04132020.xlsx +0 -0
  191. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSbuiltenv_20180621_GOLD_Mapping_04172020.xlsx +0 -0
  192. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShostassoc_20180621_GOLD_Mapping.xlsx +0 -0
  193. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShumanassoc_20180621_GOLD_Mapping_04142020.xlsx +0 -0
  194. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShumangut_20180621_GOLD_Mapping_04152020.xlsx +0 -0
  195. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShumanoral_20180621_GOLD_Mapping_04152020.xlsx +0 -0
  196. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShumanskin_20180621_GOLD_Mapping_04162020.xlsx +0 -0
  197. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShumanvaginal_20180621_GOLD_04162020.xlsx +0 -0
  198. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShydrocarbCores_20180621_Mapping_GOLD.xlsx +0 -0
  199. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxShydrocarbfs_20180621_v5_GOLD_Mapping.xlsx +0 -0
  200. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSmatbiofilm_20180621_v5_GOLD_Mapping.xlsx +0 -0
  201. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSmisc_20180621_GOLD_Mapping.xlsx +0 -0
  202. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSplantassoc_20180621_v5_GOLD_Mapping.xlsx +0 -0
  203. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSsediment_20180621_GOLD_Mapping_04102020.xlsx +0 -0
  204. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSsoil_20180621_GOLD_Mapping_04102020.xlsx +0 -0
  205. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSwastesludge_20180621_GOLD_Mapping_Apr-10.xlsx +0 -0
  206. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/MIxSwater_20180621_GOLD_Mapping_04122020.xlsx +0 -0
  207. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/Makefile +0 -0
  208. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/README.md +0 -0
  209. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/mixs_v4.xlsx +0 -0
  210. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/mapping-files/mixs_v5.xlsx +0 -0
  211. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/202106_curation_updates.ipynb +0 -0
  212. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/202106_workflow_execution_demo.ipynb +0 -0
  213. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/202109_metadata_ingest.ipynb +0 -0
  214. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/NMDC-GOLD-data-counts.ipynb +0 -0
  215. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/README.md +0 -0
  216. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/archive/generate-gold-sample-json.ipynb +0 -0
  217. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/archive/translate-30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.ipynb +0 -0
  218. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/changesheets-example.ipynb +0 -0
  219. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/changesheets-testing.ipynb +0 -0
  220. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-array-item-nested-attributes.tsv +0 -0
  221. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-insert.tsv +0 -0
  222. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-remove-item.tsv +0 -0
  223. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-remove-property.tsv +0 -0
  224. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-replace.tsv +0 -0
  225. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-update-pi-websites.tsv +0 -0
  226. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-with-separator1.tsv +0 -0
  227. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-without-separator1.tsv +0 -0
  228. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/changesheet-without-separator2.tsv +0 -0
  229. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/study-data1.json +0 -0
  230. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/study-data2.json +0 -0
  231. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/data/study-data3.json +0 -0
  232. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/ensure_biosample_set_study_id.ipynb +0 -0
  233. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/ghissue_252_253_linked_samples.ipynb +0 -0
  234. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/ghissue_255.ipynb +0 -0
  235. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/ghissue_272.ipynb +0 -0
  236. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/gold-biosample-null-value-analysis.ipynb +0 -0
  237. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/gold_ids_to_igsns.ipynb +0 -0
  238. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/images/EMSL-data-translation.png +0 -0
  239. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/images/GOLD-data-objects-translation.png +0 -0
  240. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/images/GOLD-study-project-biosample-translation.png +0 -0
  241. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/images/NMDC-jupyter-translation-workflow.png +0 -0
  242. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/metaP_stegen.ipynb +0 -0
  243. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/metadata_db_admin.ipynb +0 -0
  244. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/mongo_etl_demo.ipynb +0 -0
  245. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/FICUS-projects-merged.owl +0 -0
  246. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/FICUS-projects-merged.owl.zip +0 -0
  247. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/FICUS-projects-translation.owl +0 -0
  248. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/catalog-v001.xml +0 -0
  249. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.json +0 -0
  250. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.json.zip +0 -0
  251. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl +0 -0
  252. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/gold-classification-paths-translation.owl.zip +0 -0
  253. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/gold-dataset-translation.owl +0 -0
  254. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json/biosample.json +0 -0
  255. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json/data_objects.json +0 -0
  256. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json/omics_processing.json +0 -0
  257. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json/study.json +0 -0
  258. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-01.zip +0 -0
  259. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-05.zip +0 -0
  260. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-06.zip +0 -0
  261. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-12.zip +0 -0
  262. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-18.zip +0 -0
  263. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/nmdc-json_2020-02-19.zip +0 -0
  264. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/schema-test-full.txt.zip +0 -0
  265. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/schema-test.json +0 -0
  266. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/schema-test.txt +0 -0
  267. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/schema-test.txt.zip +0 -0
  268. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/temp.txt +0 -0
  269. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-five-biosamples/biosample.json +0 -0
  270. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-five-biosamples/data_object.json +0 -0
  271. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-five-biosamples/project.json +0 -0
  272. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-five-biosamples/study.json +0 -0
  273. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/biosample.json +0 -0
  274. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/emsl_data_objects.json +0 -0
  275. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/emsl_omics_processing.json +0 -0
  276. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/faa_fna_fastq_data_objects.json +0 -0
  277. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/gold_omics_processing.json +0 -0
  278. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/gold_study.json +0 -0
  279. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline/nmdc-02.json +0 -0
  280. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/output/test-pipeline.zip +0 -0
  281. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test-changesheet-with-separator.ipynb +0 -0
  282. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test-changesheet-without-separator.ipynb +0 -0
  283. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test-output.ipynb +0 -0
  284. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test-pipeline-scratch.ipynb +0 -0
  285. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test-pipeline-temp.ipynb +0 -0
  286. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test-pipeline.ipynb +0 -0
  287. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test.json +0 -0
  288. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/test.txt +0 -0
  289. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/translate-EMSL-data.ipynb +0 -0
  290. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/translate-GOLD-data-objects.ipynb +0 -0
  291. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/translate-GOLD-study-project-biosample.ipynb +0 -0
  292. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/notebooks/translation-pipeline.ipynb +0 -0
  293. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/__init__.py +0 -0
  294. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/__init__.py +0 -0
  295. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/align_nmdc_datatypes.py +0 -0
  296. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/execute_etl_pipeline.py +0 -0
  297. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/fix_omics_processing_json.py +0 -0
  298. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/__init__.py +0 -0
  299. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/data_operations.py +0 -0
  300. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/extract_nmdc_data.py +0 -0
  301. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/load_nmdc_data.py +0 -0
  302. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/nmdc_data_source.yaml +0 -0
  303. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/nmdc_dataframes.py +0 -0
  304. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/nmdc_etl_class.py +0 -0
  305. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/lib/transform_nmdc_data.py +0 -0
  306. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/mandatory_mixs_terms.py +0 -0
  307. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/mandatory_mixs_terms.py.org +0 -0
  308. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/bin/validate_json.py +0 -0
  309. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/2020-23-12-brodie-Gs0135149-soil-metadata.csv +0 -0
  310. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/2021-02-03-stegen_biosample_linking_update.csv +0 -0
  311. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/2021-02-04-brodie_biosample_linking_update.csv +0 -0
  312. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/2021-02-04-stegen_biosample_template.json +0 -0
  313. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/2021-07-02-study-changes.csv +0 -0
  314. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/30_FICUS_Proposals_Metadata_4_Emiley_Chris_11082019.xlsx +0 -0
  315. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/EMSL_FICUS_project_process_data_export.xlsx +0 -0
  316. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/EMSL_Hess_Stegen_Blanchard_DatasetToMetagenomeMapping.tsv +0 -0
  317. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/EMSL_biosample_matches.tsv +0 -0
  318. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/FICUS - JGI-EMSL Proposal - Gold Study - ID mapping and PI.xlsx +0 -0
  319. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/GOLD-soil-mixs-envo-mappings.tsv +0 -0
  320. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/GOLD-to-mixs-map.tsv +0 -0
  321. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/GOLD_Ecosystem_Classification_Paths_10152019.xlsx +0 -0
  322. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/GOLD_ecosystem_classification_paths.xlsx +0 -0
  323. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/JGI-EMSL-FICUS-proposals.fnl.tsv +0 -0
  324. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/NMDC-GOLD-Fields.xlsx +0 -0
  325. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/README.md +0 -0
  326. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/__init__.py +0 -0
  327. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/Hess_emsl_analysis_data_objects.json +0 -0
  328. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/Hess_metaproteomic_analysis_activities.json +0 -0
  329. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/Stegen_emsl_analysis_data_objects.json +0 -0
  330. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/Stegen_metaproteomic_analysis_activities.json +0 -0
  331. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_activities.json +0 -0
  332. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/metagenome_annotation_data_objects.json +0 -0
  333. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_activities.json +0 -0
  334. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/metagenome_assembly_data_objects.json +0 -0
  335. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/readQC_activities.json +0 -0
  336. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/aim-2-workflows/readQC_data_objects.json +0 -0
  337. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/all_gold_fields.xlsx +0 -0
  338. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/ficus_project_faa.tsv +0 -0
  339. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/ficus_project_fastq.tsv +0 -0
  340. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/ficus_project_fna.tsv +0 -0
  341. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/mixs_v5.xlsx +0 -0
  342. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/nmdc-version2.zip +0 -0
  343. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/metadata-translation/src/data/nmdc-version5.zip +0 -0
  344. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/mkdocs_overrides/partials/source.html +0 -0
  345. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/mongoKeyFile +0 -0
  346. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nersc-sshproxy.sh +0 -0
  347. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc-wfe.html +0 -0
  348. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/__init__.py +0 -0
  349. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/analytics.py +0 -0
  350. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/boot/__init__.py +0 -0
  351. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/boot/capabilities.py +0 -0
  352. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/boot/object_types.py +0 -0
  353. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/boot/triggers.py +0 -0
  354. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/boot/workflows.py +0 -0
  355. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/core/__init__.py +0 -0
  356. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/core/auth.py +0 -0
  357. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/core/idgen.py +0 -0
  358. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/core/metadata.py +0 -0
  359. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/core/util.py +0 -0
  360. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/db/__init__.py +0 -0
  361. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/db/mongo.py +0 -0
  362. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/db/s3.py +0 -0
  363. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/__init__.py +0 -0
  364. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/capabilities.py +0 -0
  365. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/ids.py +0 -0
  366. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/jobs.py +0 -0
  367. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/nmdcschema.py +0 -0
  368. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/object_types.py +0 -0
  369. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/objects.py +0 -0
  370. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/operations.py +0 -0
  371. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/runs.py +0 -0
  372. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/search.py +0 -0
  373. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/sites.py +0 -0
  374. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/triggers.py +0 -0
  375. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/users.py +0 -0
  376. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/util.py +0 -0
  377. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/endpoints/workflows.py +0 -0
  378. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/entrypoint.sh +0 -0
  379. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/__init__.py +0 -0
  380. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/capability.py +0 -0
  381. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/id.py +0 -0
  382. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/job.py +0 -0
  383. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/metadata.py +0 -0
  384. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/minter.py +0 -0
  385. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/nmdc_schema.py +0 -0
  386. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/object.py +0 -0
  387. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/object_type.py +0 -0
  388. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/operation.py +0 -0
  389. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/query.py +0 -0
  390. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/run.py +0 -0
  391. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/site.py +0 -0
  392. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/trigger.py +0 -0
  393. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/user.py +0 -0
  394. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/util.py +0 -0
  395. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/models/workflow.py +0 -0
  396. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/api/v1/router.py +0 -0
  397. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/client/__init__.py +0 -0
  398. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/config.py +0 -0
  399. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/containers.py +0 -0
  400. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/core/__init__.py +0 -0
  401. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/core/db/Database.py +0 -0
  402. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/core/db/__init__.py +0 -0
  403. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/core/exceptions/__init__.py +0 -0
  404. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/core/exceptions/base.py +0 -0
  405. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/core/exceptions/token.py +0 -0
  406. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/dagster.Dockerfile +0 -0
  407. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/domain/__init__.py +0 -0
  408. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/domain/users/__init__.py +0 -0
  409. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/domain/users/queriesInterface.py +0 -0
  410. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/domain/users/userSchema.py +0 -0
  411. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/domain/users/userService.py +0 -0
  412. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/fastapi.Dockerfile +0 -0
  413. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/__init__.py +0 -0
  414. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/__init__.py +0 -0
  415. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/db.py +0 -0
  416. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/impl/mongo/__init__.py +0 -0
  417. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/impl/mongo/db.py +0 -0
  418. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/impl/mongo/models/__init__.py +0 -0
  419. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/impl/mongo/models/user.py +0 -0
  420. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/models/__init__.py +0 -0
  421. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/infrastructure/database/models/user.py +0 -0
  422. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/__init__.py +0 -0
  423. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/extract_nmdc_data.py +0 -0
  424. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/load_nmdc_data.py +0 -0
  425. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/nmdc_data_source.yaml +0 -0
  426. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/nmdc_dataframes.py +0 -0
  427. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/nmdc_etl_class.py +0 -0
  428. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/lib/transform_nmdc_data.py +0 -0
  429. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/main.py +0 -0
  430. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/__init__.py +0 -0
  431. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/adapters/__init__.py +0 -0
  432. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/adapters/repository.py +0 -0
  433. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/bootstrap.py +0 -0
  434. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/domain/__init__.py +0 -0
  435. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/domain/model.py +0 -0
  436. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/entrypoints/__init__.py +0 -0
  437. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/minter/entrypoints/fastapi_app.py +0 -0
  438. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/__init__.py +0 -0
  439. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/backup/__init__.py +0 -0
  440. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/backup/nmdcdb_mongodump.py +0 -0
  441. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/backup/nmdcdb_mongoexport.py +0 -0
  442. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/backup/nmdcdb_mongoimport.py +0 -0
  443. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/changesheets/__init__.py +0 -0
  444. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/changesheets/base.py +0 -0
  445. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/changesheets/data/OmicsProcessing-to-catted-Biosamples.tsv +0 -0
  446. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/changesheets/scripts/missing_neon_soils_ecosystem_data.py +0 -0
  447. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/changesheets/scripts/neon_soils_add_ncbi_ids.py +0 -0
  448. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/dagster.yaml +0 -0
  449. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/drsobjects/__init__.py +0 -0
  450. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/drsobjects/ingest.py +0 -0
  451. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/drsobjects/registration.py +0 -0
  452. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/entrypoint-daemon.sh +0 -0
  453. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/entrypoint-dagit-readonly.sh +0 -0
  454. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/entrypoint-dagit.sh +0 -0
  455. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/export/__init__.py +0 -0
  456. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/export/ncbi_xml.py +0 -0
  457. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/export/ncbi_xml_utils.py +0 -0
  458. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/export/study_metadata.py +0 -0
  459. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/normalization/__init__.py +0 -0
  460. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/normalization/gold.py +0 -0
  461. {nmdc_runtime-2.2.0/nmdc_runtime/site/translation → nmdc_runtime-2.3.0/nmdc_runtime/site/repair}/__init__.py +0 -0
  462. {nmdc_runtime-2.2.0/nmdc_runtime/site/validation → nmdc_runtime-2.3.0/nmdc_runtime/site/translation}/__init__.py +0 -0
  463. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/emsl.py +0 -0
  464. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/gold.py +0 -0
  465. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/jgi.py +0 -0
  466. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/neon_benthic_translator.py +0 -0
  467. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/neon_soil_translator.py +0 -0
  468. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/neon_surface_water_translator.py +0 -0
  469. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/neon_utils.py +0 -0
  470. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/submission_portal_translator.py +0 -0
  471. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/translator.py +0 -0
  472. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/translation/util.py +0 -0
  473. {nmdc_runtime-2.2.0/tests/test_api → nmdc_runtime-2.3.0/nmdc_runtime/site/validation}/__init__.py +0 -0
  474. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/validation/emsl.py +0 -0
  475. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/validation/gold.py +0 -0
  476. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/validation/jgi.py +0 -0
  477. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/site/validation/util.py +0 -0
  478. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/static/ORCIDiD_icon128x128.png +0 -0
  479. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/static/favicon.ico +0 -0
  480. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/templates/search.html +0 -0
  481. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime/test.Dockerfile +0 -0
  482. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime.egg-info/dependency_links.txt +0 -0
  483. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime.egg-info/entry_points.txt +0 -0
  484. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/nmdc_runtime.egg-info/top_level.txt +0 -0
  485. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/requirements/dev.in +0 -0
  486. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/setup.cfg +0 -0
  487. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/setup.py +0 -0
  488. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tasks.py +0 -0
  489. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/__init__.py +0 -0
  490. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/conftest.py +0 -0
  491. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/e2e/test_minter_api.py +0 -0
  492. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/nmdc_bsm-11-0pyv7738.json +0 -0
  493. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/nmdc_bsm-11-5nhz3402.json +0 -0
  494. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/nmdc_bsm-12-7mysck21.json +0 -0
  495. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/nmdc_dobj-11-000n1286.json +0 -0
  496. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/nmdc_sty-11-pzmd0x14.json +0 -0
  497. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/planned_processes.json +0 -0
  498. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/study_no_credit_associations.json +0 -0
  499. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/test_changesheet_decimal_value.tsv +0 -0
  500. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/test_changesheet_insert_study_doi.tsv +0 -0
  501. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/test_changesheet_update_bytes_ranged_slot.tsv +0 -0
  502. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/files/test_changesheet_update_one_ph.tsv +0 -0
  503. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/integration/test_minter_repository.py +0 -0
  504. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/mongodump-nmdc-testdb.sh +0 -0
  505. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/mongorestore-nmdc-testdb.sh +0 -0
  506. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/nmdcdb.test.archive.gz +0 -0
  507. {nmdc_runtime-2.2.0/tests/test_data → nmdc_runtime-2.3.0/tests/test_api}/__init__.py +0 -0
  508. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_api/test_db_mongo.py +0 -0
  509. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_api/test_metadata.py +0 -0
  510. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_api/util.py +0 -0
  511. {nmdc_runtime-2.2.0/tests/test_graphs → nmdc_runtime-2.3.0/tests/test_data}/__init__.py +0 -0
  512. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/conftest.py +0 -0
  513. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_gold_translator.py +0 -0
  514. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_gold_translator_data.yaml +0 -0
  515. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_integrity.py +0 -0
  516. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_ncbi_xml.py +0 -0
  517. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_neon_benthic_data_translator.py +0 -0
  518. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_neon_soil_data_translator.py +0 -0
  519. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_submission_portal_translator.py +0 -0
  520. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_submission_portal_translator_data.yaml +0 -0
  521. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_data/test_translator.py +0 -0
  522. {nmdc_runtime-2.2.0/tests/test_normalization → nmdc_runtime-2.3.0/tests/test_graphs}/__init__.py +0 -0
  523. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_graphs/ensure_jobs.py +0 -0
  524. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_graphs/test_hello.py +0 -0
  525. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_graphs/test_submission_portal_graphs.py +0 -0
  526. {nmdc_runtime-2.2.0/tests/test_ops → nmdc_runtime-2.3.0/tests/test_normalization}/__init__.py +0 -0
  527. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_normalization/test_gold.py +0 -0
  528. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_ops/test_data_api_ops.py +0 -0
  529. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_ops/test_get_csv_rows_from_url.py +0 -0
  530. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_ops/test_gold_api_ops.py +0 -0
  531. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_ops/test_materialize_alldocs.py +0 -0
  532. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_ops/test_ops.py +0 -0
  533. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/test_util.py +0 -0
  534. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/unit/core_util.py +0 -0
  535. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tests/unit/test_minter_model.py +0 -0
  536. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/tmp.json +0 -0
  537. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/util/get_latest_nmdc_prod_dump_dir.sh +0 -0
  538. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/util/mongodump-nmdc.sh +0 -0
  539. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/util/mongorestore-nmdc.sh +0 -0
  540. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/wait-for-it.sh +0 -0
  541. {nmdc_runtime-2.2.0 → nmdc_runtime-2.3.0}/workspace.toml +0 -0
@@ -4,12 +4,12 @@
4
4
  │ Summarize the changes you made on this branch. This is typically a more │
5
5
  │ detailed restatement of the PR title. │
6
6
  │ │
7
- │ Example: "In this branch, I updated the `/studies/{study_id}` endpoint │
7
+ │ Example: "On this branch, I updated the `/studies/{study_id}` endpoint │
8
8
  │ so it returns an HTTP 404 response when the specified study │
9
9
  │ does not exist." │
10
10
  └─────────────────────────────────────────────────────────────────────────┘-->
11
11
 
12
- In this branch, I...
12
+ On this branch, I...
13
13
 
14
14
  ### Details
15
15
 
@@ -0,0 +1,93 @@
1
+ # This GitHub Actions workflow builds a website file tree and deploys it to GitHub Pages.
2
+ # Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
3
+ name: Deploy redirects to GitHub Pages
4
+
5
+ on:
6
+ push: { branches: [ main ] }
7
+ workflow_dispatch: { }
8
+
9
+ # Reference: https://docs.github.com/en/actions/using-jobs/using-concurrency
10
+ concurrency:
11
+ group: github-pages
12
+ cancel-in-progress: true
13
+
14
+ jobs:
15
+ build:
16
+ name: Build website
17
+ runs-on: ubuntu-latest
18
+ permissions:
19
+ contents: read
20
+ steps:
21
+ - name: Check out commit
22
+ uses: actions/checkout@v4
23
+ - name: Create website file tree
24
+ run: |
25
+ # Define helper function.
26
+ make_redirect() {
27
+ # This function prints the HTML markup for a web page that redirects the client.
28
+ local url="https://docs.microbiomedata.org/runtime/${1}"
29
+ echo "<html><head><meta http-equiv=\"refresh\" content=\"0; url=${url}\" /></head><body>Redirecting to <a href=\"${url}\">${url}</a>...</body></html>"
30
+ }
31
+
32
+ # Create directories.
33
+ mkdir -p \
34
+ _build/html \
35
+ _build/html/explanation \
36
+ _build/html/howto-guides \
37
+ _build/html/howto-guides/jobs \
38
+ _build/html/tutorials \
39
+ _build/html/nb
40
+
41
+ # Create HTML files containing redirects.
42
+ #
43
+ # Note: These HTML files will be accessible at the same URLs at which _original_ Runtime documentation pages
44
+ # had been accessible (on the https://microbiomedata.github.io/nmdc-runtime/ website) prior to the
45
+ # launch of the new, NMDC-wide documentation website (i.e., https://docs.microbiomedata.org).
46
+ #
47
+ # For documents added to the Runtime repo's `docs/` directory _after_ the launch of the latter website,
48
+ # creating redirects for those documents' URLs is unnecessary, since there was nothing at those URLs
49
+ # before (presumably, nobody has expects anything other than an "HTTP 404 Not Found" error at them).
50
+ #
51
+ cd _build/html
52
+ make_redirect index.html > index.html
53
+ make_redirect admin.html > admin.html
54
+ make_redirect draft.html > draft.html
55
+ make_redirect contributing-docs.html > contributing-docs.html
56
+ make_redirect explanation/domain-vision-statement.html > explanation/domain-vision-statement.html
57
+ make_redirect explanation/identifiers.html > explanation/identifiers.html
58
+ make_redirect explanation/journeys.html > explanation/journeys.html
59
+ make_redirect howto-guides/update-sensors-ops.html > howto-guides/update-sensors-ops.html
60
+ make_redirect howto-guides/create-triggers.html > howto-guides/create-triggers.html
61
+ make_redirect howto-guides/improving-search-api.html > howto-guides/improving-search-api.html
62
+ make_redirect howto-guides/release-process.html > howto-guides/release-process.html
63
+ make_redirect howto-guides/author-changesheets.html > howto-guides/author-changesheets.html
64
+ make_redirect howto-guides/claim-and-run-jobs.html > howto-guides/claim-and-run-jobs.html
65
+ make_redirect howto-guides/jobs/gold-translation-etl.html > howto-guides/jobs/gold-translation-etl.html
66
+ make_redirect tutorials/json.html > tutorials/json.html
67
+ make_redirect tutorials/exporters.html > tutorials/exporters.html
68
+ make_redirect tutorials/metadata-in.html > tutorials/metadata-in.html
69
+ make_redirect tutorials/auth.html > tutorials/auth.html
70
+ make_redirect tutorials/translators.html > tutorials/translators.html
71
+ make_redirect nb/bulk_validation_referential_integrity_check.html > nb/bulk_validation_referential_integrity_check.html
72
+ make_redirect nb/get_data.html > nb/get_data.html
73
+ make_redirect nb/queue_and_trigger_data_jobs.html > nb/queue_and_trigger_data_jobs.html
74
+ make_redirect nb/wf_automation.html > nb/wf_automation.html
75
+ - name: Save the result for publishing to GitHub Pages
76
+ uses: actions/upload-pages-artifact@v3
77
+ with:
78
+ path: _build/html
79
+ deploy:
80
+ name: Deploy website
81
+ needs:
82
+ - build
83
+ runs-on: ubuntu-latest
84
+ permissions:
85
+ pages: write
86
+ id-token: write
87
+ environment:
88
+ name: github-pages
89
+ url: ${{ steps.deployment.outputs.page_url }}
90
+ steps:
91
+ - name: Deploy to GitHub Pages
92
+ id: deployment
93
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,45 @@
1
+ name: mkdocs
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ paths:
7
+ - 'docs/**'
8
+ - 'mkdocs_overrides/**'
9
+ - 'mkdocs.yml'
10
+ - '.github/workflows/mkdocs.yml'
11
+ jobs:
12
+ deploy:
13
+ runs-on: ubuntu-latest
14
+ if: github.event.repository.fork == false
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: actions/setup-python@v2
18
+ with:
19
+ python-version: 3.x
20
+ - run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
21
+ - run: pip install mkdocs-mermaid2-plugin
22
+ - run: pip install mkdocs-jupyter
23
+ # Build the MkDocs site (but don't deploy it).
24
+ #
25
+ # Note: Until January 17, 2025, we would build and deploy the MkDocs website to GitHub Pages.
26
+ # As of January 17, 2025, we just _build_ it — we don't deploy it.
27
+ #
28
+ # The reason is that the NMDC has a new, centralized documentation website: https://docs.microbiomedata.org.
29
+ # That website includes a copy of the Runtime documentation (it's at the path, `/runtime`). Instead of
30
+ # deploying this redundant copy (being built here) to `https://microbiomedata.github.io/nmdc-runtime`,
31
+ # we will (via the new `deploy-redirects.yml` workflow) deploy a bunch of HTML files that redirect visitors
32
+ # from pages on `https://microbiomedata.github.io/nmdc-runtime` to their counterparts on
33
+ # `https://docs.microbiomedata.org/runtime`.
34
+ #
35
+ # This redirection is not implemented in the MkDocs site, _itself_, because those MkDocs site source files
36
+ # are used to build the website hosted at `https://docs.microbiomedata.org/runtime`; and, if a page were
37
+ # to redirect to itself, the result would be a circular redirect.
38
+ #
39
+ # The reason we still bother to build the MkDocs site here is so we get an error (a failed GHA workflow run)
40
+ # when the site is no longer buildable (e.g. due to someone inadvertently introducing an invalid source
41
+ # file, or due to one of the dependencies becoming unavailable), which can prompt remedial action.
42
+ #
43
+ - run: mkdocs build
44
+ env:
45
+ GH_TOKEN: ${{ secrets.GH_TOKEN_MKDOCS_MATERIAL_INSIDERS }}
@@ -3,6 +3,15 @@
3
3
 
4
4
  name: Python application
5
5
 
6
+ # Note: The following events will trigger this workflow:
7
+ # 1. Someone pushes a commit to `main` that includes changes to any of the listed files.
8
+ # 2. Someone opens a pull request that includes changes to any of the listed files.
9
+ # 3. Someone clicks the "Run workflow" button on the "Actions" tab on GitHub.
10
+ #
11
+ # References:
12
+ # - https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/triggering-a-workflow#example-including-paths
13
+ # - https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
14
+ #
6
15
  on:
7
16
  push:
8
17
  branches: [ main ]
@@ -11,7 +20,9 @@ on:
11
20
  - 'Makefile'
12
21
  - '**.Dockerfile'
13
22
  - '**.py'
14
- - 'requirements/main.txt'
23
+ - 'requirements/main.txt'
24
+ # Every file in the `data` directory or in any of its subdirectories:
25
+ - 'metadata-translation/notebooks/data/**'
15
26
  pull_request:
16
27
  paths:
17
28
  - '.github/workflows/python-app.yml'
@@ -19,6 +30,7 @@ on:
19
30
  - '**.Dockerfile'
20
31
  - '**.py'
21
32
  - 'requirements/main.txt'
33
+ - 'metadata-translation/notebooks/data/**'
22
34
  # Allow developers to trigger this workflow manually via the "Actions" page on GitHub.
23
35
  # Reference: https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/manually-running-a-workflow
24
36
  workflow_dispatch: { }
@@ -5,10 +5,16 @@ init:
5
5
 
6
6
  # Updates Python dependencies based upon the contents of the `requirements/main.in` and `requirements/dev.in` files.
7
7
  #
8
- # To omit the `--upgrade` option (included by default) when running `pip-compile`:
9
- # ```
10
- # $ make update-deps UPDATE_DEPS_MAIN_UPGRADE_OPT='' UPDATE_DEPS_DEV_UPGRADE_OPT=''
11
- # ```
8
+ # Note: To omit the `--upgrade` option (included by default) when running `pip-compile`:
9
+ # ```
10
+ # $ make update-deps UPDATE_DEPS_MAIN_UPGRADE_OPT='' UPDATE_DEPS_DEV_UPGRADE_OPT=''
11
+ # ```
12
+ #
13
+ # Note: You can run the following command on your host machine to have `$ make update-deps` run within a container:
14
+ # ```sh
15
+ # $ docker compose run --rm --no-deps fastapi sh -c 'make update-deps'
16
+ # ```
17
+ #
12
18
  UPDATE_DEPS_MAIN_UPGRADE_OPT ?= --upgrade
13
19
  UPDATE_DEPS_DEV_UPGRADE_OPT ?= --upgrade
14
20
  update-deps:
@@ -43,6 +49,8 @@ test-dbinit:
43
49
  docker compose --file docker-compose.test.yml \
44
50
  exec mongo /bin/bash -c "/mongorestore-nmdc-testdb.sh"
45
51
 
52
+ # Tip: If you append a file path to this "recipe", pytest will run only the tests defined in that file.
53
+ # For example, append `tests/test_api/test_endpoints.py` to have pytest only run the endpoint tests.
46
54
  test-run:
47
55
  docker compose --file docker-compose.test.yml run test
48
56
 
@@ -101,7 +109,7 @@ mongorestore-nmdc-db:
101
109
  mkdir -p /tmp/remote-mongodump/nmdc
102
110
  # Optionally, manually update MONGO_REMOTE_DUMP_DIR env var:
103
111
  # ```bash
104
- # export MONGO_REMOTE_DUMP_DIR=$(ssh -i ~/.ssh/nersc -q ${NERSC_USERNAME}@dtn01.nersc.gov 'bash -s ' < get_latest_nmdc_prod_dump_dir.sh 2>/dev/null)
112
+ # 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)
105
113
  # ```
106
114
  # Rsync the remote dump directory items of interest:
107
115
  rsync -av --exclude='_*' --exclude='fs\.*' \
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: nmdc_runtime
3
- Version: 2.2.0
3
+ Version: 2.3.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
@@ -11,6 +11,14 @@ Classifier: License :: OSI Approved :: Apache Software License
11
11
  Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: requires-python
21
+ Dynamic: summary
14
22
 
15
23
  A runtime system for NMDC data management and orchestration.
16
24
 
@@ -3,7 +3,7 @@
3
3
  The Runtime advertises jobs to be done, where a [Job](https://api.microbiomedata.org/docs#/jobs)
4
4
  is a [Workflow](https://api.microbiomedata.org/docs#/workflows) paired with a chosen input
5
5
  [Object](https://api.microbiomedata.org/docs#/objects). See [Guide - Create Workflow Triggers To
6
- Spawn Jobs](guide-create-triggers.md) to learn how to arrange for jobs of interest to be
6
+ Spawn Jobs](create-triggers.md) to learn how to arrange for jobs of interest to be
7
7
  automatically available when relevant new workflow inputs are available.
8
8
 
9
9
  You can list open jobs via [`GET /jobs`](https://api.microbiomedata.org/docs#/jobs/list_jobs_jobs_get). To
@@ -1,6 +1,5 @@
1
1
  # GOLD Translation ETL
2
2
 
3
-
4
3
  This job takes a `nmdc_merged_data.tsv.zip` file as a data object input.
5
4
 
6
5
  First, start your local runtime stack:
@@ -13,7 +12,6 @@ Load <http://localhost:3000/workspace> and ensure the `translation` repository i
13
12
 
14
13
  ![dagster-workspace-repo-loaded](../../img/dagster-workspace-repo-loaded.png)
15
14
 
16
-
17
15
  Next, navigate to the Jobs page for the `translation` repository:
18
16
 
19
17
  ![dagster-translation-repo-jobs](../../img/dagster-translation-repo-jobs.png)
@@ -53,12 +51,13 @@ mongoexport --host="localhost:27018" \
53
51
  -d nmdc_etl_staging -c gold.biosample_set \
54
52
  --jsonArray -o gold.biosample_set.json
55
53
  ```
54
+
56
55
  ```
57
56
  jq '{biosample_set:.}' gold.biosample_set.json \
58
57
  > gold.biosample_set.as_nmdcdb.2021-11-18.json
59
58
  ```
60
59
 
61
- Now, you may [submit this metadata as JSON through the API](../tutorials/tutorial-metadata-in.md).
60
+ Now, you may [submit this metadata as JSON through the API](../../tutorials/metadata-in.md)
62
61
 
63
62
  In the tutorial linked to above, GitHub's Gist service is used to host and obtain a URL for the
64
63
  JSON. Here's let's walk through using the NMDC's `www` directory on NERSC to host the file and
@@ -70,6 +69,7 @@ a DRS object in the API:
70
69
  scp gold.biosample_set.as_nmdcdb.2021-11-18.json \
71
70
  dtn01.nersc.gov:/global/cfs/cdirs/m3408/www/meta/
72
71
  ```
72
+
73
73
  ```
74
74
  ssh dtn01.nersc.gov
75
75