-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from microbiomedata/39c-copy-legacy-docs-to-no…
…n-legacy-place Duplicate legacy documentation as foundation for future documentation
- Loading branch information
Showing
196 changed files
with
4,318 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This GitHub Actions workflow compiles the Sphinx documentation into web-based documentation. | ||
# Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions | ||
name: Compile current NMDC documentation into HTML | ||
|
||
on: | ||
push: { branches: [ main ] } | ||
workflow_dispatch: { } | ||
# Allow this workflow to be called by other workflows. | ||
# Reference: https://docs.github.com/en/actions/using-workflows/reusing-workflows | ||
workflow_call: { } | ||
|
||
jobs: | ||
compile: | ||
name: Compile | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
# Set a default working directory for all `run` steps in this job. | ||
# Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_iddefaultsrun | ||
working-directory: content/nmdc | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Check out commit # Docs: https://github.com/actions/checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python # Docs: https://github.com/actions/setup-python | ||
uses: actions/setup-python@v5 | ||
with: { python-version: '3.12' } | ||
- name: Install Sphinx # Docs: https://pypi.org/project/Sphinx/ | ||
run: pip install Sphinx | ||
- name: Install other dependencies | ||
run: pip install -r requirements.txt | ||
- name: Compile source documents into HTML | ||
run: sphinx-build -b html src ${{ github.workspace }}/content/nmdc/_build/html | ||
# Upload the result as an "artifact" so it can then be downloaded and used by another job. | ||
- name: Save the HTML for publishing later # Docs: https://github.com/actions/upload-artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: current-nmdc-documentation-as-html | ||
# Note: Relative `path` values here are relative to the _workspace_, not to the current working directory. | ||
# Reference: https://github.com/actions/upload-artifact/pull/477#issue-2044900649 | ||
path: content/nmdc/_build/html | ||
if-no-files-found: error | ||
retention-days: 1 # Note: 1 day is the shortest period possible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Ignore the web-based documentation generated by Sphinx. | ||
/_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Base this container image upon the official Python container image. | ||
# Reference: https://hub.docker.com/_/python | ||
FROM python:3.12 | ||
|
||
WORKDIR /app | ||
|
||
# Install a package that can be used to effectively run Spinx in "watch" mode, | ||
# wherein the web-based documentation will automatically be rebuilt whenever | ||
# a source file changes. | ||
# Reference: https://github.com/sphinx-doc/sphinx-autobuild | ||
RUN pip3 install sphinx-autobuild | ||
|
||
ADD requirements.txt . | ||
RUN pip3 install -r requirements.txt | ||
|
||
EXPOSE 8000 | ||
|
||
# Run `sphinx-autobuild` in a way that, whenever something changes | ||
# in the `src` directory, it rebuilds the web-based documentation | ||
# and stores the result in `_build/html`. | ||
CMD ["sphinx-autobuild", "--host", "0.0.0.0", "src", "_build/html"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
myst-parser | ||
sphinx_markdown_tables | ||
sphinx_rtd_theme | ||
|
||
# Sphinx plugin that handles redirects. | ||
# Reference: https://pypi.org/project/sphinx-reredirects/ | ||
sphinx-reredirects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* Hide "On Read the Docs" section from versions menu */ | ||
div.rst-versions > div.rst-other-versions > div.injected > dl:nth-child(3) { | ||
display: none; | ||
} | ||
/* Hide "On GitHub" section from versions menu */ | ||
div.rst-versions > div.rst-other-versions > div.injected > dl:nth-child(4) { | ||
display: none; | ||
} | ||
|
||
/* Customize text wrapping in table cells */ | ||
.wy-table-responsive table td, .wy-table-responsive table th { | ||
white-space: inherit; | ||
} |
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_cursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...dc/src/_static/images/howto_guides/api_gui/find_data_objects_data_object_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_example_note.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step3and4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_get_activities.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...mdc/src/_static/images/howto_guides/api_gui/find_get_activities_activity_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_get_biosamples.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/api_gui/find_get_biosamples_sample_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_get_data_objects.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/api_gui/find_get_data_objects_study.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_get_studies.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/find_get_studies_study_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step4and5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...t/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_name.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...src/_static/images/howto_guides/api_gui/metadata_get_collection_name_doc_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_stats.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_doc_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
...mdc/src/_static/images/howto_guides/api_gui/metadata_get_nmdcschema_version.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/api_gui/metadata_page_token_param.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...src/_static/images/howto_guides/api_gui/metadata_post_changesheets_validate.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_json_validate.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...dc/src/_static/images/howto_guides/api_gui/metadata_post_validate_urls_file.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/data_mgt/data_mgt_list.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/Create_submission.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/KO_results.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/KO_term_search.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/PI_search.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/bar_plot.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/bulk_download.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/color_legend.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/column_help.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/column_search.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/column_visibility.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/portal_guide/download_individual_file.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/enviro_package.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/geographic_map.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/geographic_name.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/gold_classification.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/instrument_name.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/jump_to_column.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/latitude.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/longitude.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/multiomics.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/omics_type.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/portal_functionality.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/portal_guide/processing_institution.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/sankey_diagram.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/shipping_info.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/study_info.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nmdc/src/_static/images/howto_guides/portal_guide/sub_portal_enviro_package.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/sub_portal_input.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/submission_context.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/temporal_slider.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/upset_plot.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/portal_guide/validate.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image7.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/NOM/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/NOM/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/NOM/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/NOM/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/NOM/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/metaT/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/metaT/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/metaT/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/metaT/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/metaT/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/metaT/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
.../nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image7.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image7.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image8.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image10.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image11.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image12.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image13.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image14.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image15.png
Oops, something went wrong.
Binary file added
BIN
+61 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image7.png
Oops, something went wrong.
Binary file added
BIN
+91 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image8.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image9.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image10.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image7.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image8.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...ent/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image9.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image7.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/other/construction_4_kindpng_1353982.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/other/construction_5_kindpng_2708235.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/overview/diataxis_documentation_graphic.png
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
content/nmdc/src/_static/images/reference/data_portal/nmdc-diagram.svg
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img1.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img2.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img3.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img4.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img5.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img6.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/ReadAnalysis_workflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/nmdc-logo-bg-trans.png
Oops, something went wrong.
Binary file added
BIN
+24.7 KB
content/nmdc/src/_static/images/reference/metadata/nmdc-logo-bg-white.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/metadata/test_schema_uml.png
Oops, something went wrong.
263 changes: 263 additions & 0 deletions
263
content/nmdc/src/_static/images/reference/metadata/test_schema_uml.svg
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/workflows/1_RQC_rqc_workflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/workflows/2_MAG_MAG_workflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...tatic/images/reference/workflows/2_ReadAnalysis_readbased_analysis_workflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...mdc/src/_static/images/reference/workflows/3_MetaGAssemly_workflow_assembly.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...nt/nmdc/src/_static/images/reference/workflows/4_MetaGAnnotation_annotation.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/workflows/5_MAG_MAG_workflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...dc/src/_static/images/reference/workflows/5_Metaproteomics_workflow_diagram.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...tatic/images/reference/workflows/5_ReadAnalysis_readbased_analysis_workflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/workflows/6_MetaT_metaT_figure.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...src/_static/images/reference/workflows/6_MetaT_workflow_metatranscriptomics.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...t/nmdc/src/_static/images/reference/workflows/6_Metabolomics_metamsworkflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...dc/src/_static/images/reference/workflows/6_Metaproteomics_workflow_diagram.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...t/nmdc/src/_static/images/reference/workflows/7_Metabolomics_metamsworkflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...tatic/images/reference/workflows/7_Metaproteomics_detailed_workflow_diagram.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...dc/src/_static/images/reference/workflows/7_Metaproteomics_workflow_diagram.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...t/nmdc/src/_static/images/reference/workflows/8_Metabolomics_metamsworkflow.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
...src/_static/images/reference/workflows/9_MetaT_Workflow_metatranscriptomics.png
Oops, something went wrong.
Binary file added
BIN
+13 Bytes
content/nmdc/src/_static/images/reference/workflows/9_NOM_enviromsworkflow.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{%- extends "sphinx_rtd_theme/breadcrumbs.html" %} | ||
|
||
{% block breadcrumbs_aside %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# This file only contains a selection of the most common options. For a full | ||
# list see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Path setup -------------------------------------------------------------- | ||
|
||
# If extensions (or modules to document with autodoc) are in another directory, | ||
# add these directories to sys.path here. If the directory is relative to the | ||
# documentation root, use os.path.abspath to make it absolute, like shown here. | ||
# | ||
# import os | ||
# import sys | ||
|
||
# sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | ||
|
||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = 'NMDC Documentation' | ||
copyright = '2024, The NMDC Team' | ||
author = 'The NMDC Team' | ||
|
||
# The full version, including alpha/beta/rc tags | ||
release = '0.1' | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
||
# Add any Sphinx extension module names here, as strings. They can be | ||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | ||
# ones. | ||
extensions = [ | ||
'myst_parser', | ||
'sphinx_markdown_tables', | ||
'sphinx_reredirects' | ||
] | ||
|
||
# source_suffix = '.rst' | ||
source_suffix = ['.rst', '.md'] | ||
# Add any paths that contain templates here, relative to this directory. | ||
# templates_path = ['_templates'] | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
# This pattern also affects html_static_path and html_extra_path. | ||
exclude_patterns = [] | ||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
|
||
# The theme to use for HTML and HTML Help pages. See the documentation for | ||
# a list of builtin themes. | ||
# | ||
html_theme = 'sphinx_rtd_theme' | ||
html_title = 'NMDC' | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ['_templates'] | ||
# Add any paths that contain custom static files (such as style sheets) here, | ||
# relative to this directory. They are copied after the builtin static files, | ||
# so a file named "default.css" will overwrite the builtin "default.css". | ||
html_static_path = ['_static'] | ||
# These paths are either relative to html_static_path | ||
# or fully qualified paths (eg. https://...) | ||
html_css_files = [ | ||
'css/custom.css', | ||
] | ||
html_logo = "_static/images/nmdc-logo-bg-white.png" | ||
|
||
# -- Redirects ------------------------------------------ | ||
|
||
# Redirect old schema documentation URLs to the schema documentation | ||
# that is automatically kept in sync with the schema. | ||
# Reference: https://pypi.org/project/sphinx-reredirects/ | ||
redirects = { | ||
"reference/metadata/xylene": "https://w3id.org/nmdc/xylene", # the latter redirects to: https://microbiomedata.github.io/nmdc-schema/xylene/ | ||
"reference/metadata/*": "https://w3id.org/nmdc/nmdc", | ||
} |
Oops, something went wrong.