Skip to content

Commit a0d49b4

Browse files
authored
MAINT: stable -> latest xrefs on main (#167)
1 parent 20e02cf commit a0d49b4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

book/plugins/how-to-guides/set-up-development-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Config Source: /Users/q2-user/miniforge3/envs/q2dev-tiny-2025-04-30/etc/qiime2_c
9999
100100
Getting help
101101
To find help and learning resources, visit https://qiime2.org.
102-
To get help with configuring and/or understanding QIIME 2 parallelization, visit https://use.qiime2.org/en/stable/references/parallel-configuration.html
102+
To get help with configuring and/or understanding QIIME 2 parallelization, visit https://use.qiime2.org/en/latest/references/parallel-configuration.html
103103
```
104104

105105
The versions listed here, for QIIME 2, q2cli, q2-types, and q2-metadata are development versions as defined by [versioneer](https://github.com/python-versioneer/python-versioneer), and these indicate that you're working in a QIIME 2 development environment (as opposed to working with a specific release version of QIIME 2).

book/plugins/tutorials/add-parallel-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ las_results, = combine_action(las_results)
269269

270270
Under the hood is where the magic happens here.
271271
Because we're iterating over a collection of QIIME 2 Artifacts (the `for` loop above) in a QIIME 2 `Pipeline`, each `las_result` object is a proxy for a real QIIME 2 artifact.
272-
The jobs to create them are distributed as indicated in the user's [QIIME 2 parallel configuration](https://use.qiime2.org/en/stable/references/parallel-configuration.html).
272+
The jobs to create them are distributed as indicated in the user's [QIIME 2 parallel configuration](https://use.qiime2.org/en/latest/references/parallel-configuration.html).
273273
The code continues executing as if these were real Artifacts, not proxy Artifacts, until something is needed from them.
274274
At that point, the code will block (i.e., wait) until the proxy Artifacts become real Artifacts, and then continue processing.
275275

book/plugins/tutorials/create-from-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Miscellaneous:
7474
--help Show this message and exit.
7575
```
7676
77-
If you'd like to try the action out, you can call your `duplicate-table` action on any QIIME 2 `FeatureTable[Frequency]` artifact (e.g., you can download one from the QIIME 2 user documentation with [this link](https://gut-to-soil-tutorial.readthedocs.io/en/stable/data/gut-to-soil/asv-table.qza)).
77+
If you'd like to try the action out, you can call your `duplicate-table` action on any QIIME 2 `FeatureTable[Frequency]` artifact (e.g., you can download one from the QIIME 2 user documentation with [this link](https://gut-to-soil-tutorial.readthedocs.io/en/latest/data/gut-to-soil/asv-table.qza)).
7878
Load your duplicated table with [QIIME 2 View](https://view.qiime2.org), and poke through its Provenance to see how data provenance is recorded for your plugin.
7979
8080
## Initialize a git repository (optional but recommended)

0 commit comments

Comments
 (0)