[Preview] QIIME 2 2023.5 development changelog

QIIME 2 2023.5 has been released!
Please see the official changelog for more details.

Original content of post

:exclamation: Important :exclamation:

The following is an early developer preview of the changes expected in 2023.5

This post is a live-document which will be updated throughout our development cycle. Any links will in this topic will be broken until the release is officially published. When we are ready for release, we’ll copy this changelog and create a new post in the Announcements category .


Important Developer Information

Dates (please keep an :eye: on this post, these :calendar: might change):

  • PRs must be merged by: May 22nd, 2023
  • Repo Freeze and Package Building: May 23rd, 2023
  • Release Day: May 24th, 2023

Developer Project Board:

QIIME 2 2023.5 Project on Github


Exciting Announcements! :partying_face: :tada:

Parsl

QIIME 2 pipelines can now be parallelized via parsl :package: Huge thanks to @Oddant1 for implementing this! :star_struck:

On the CLI, pass the --parallel flag to parallelize a given pipeline using a basic parsl configuration that should work on most non HPC systems.

In the Python API, call .parallel on the pipeline to get the same result (ex. diversity.pipelines.core_metrics.parallel(*args, **kwargs)).

Parsl allows for more detailed configuration for HPC systems. More documentation on how to do this in QIIME 2 may be found in the dev docs linked above.

Pipeline Resumption

QIIME 2 pipelines that fail part way through can now be resumed from their point of failure instead of needing to restart from the beginning. Another huge thanks to @Oddant1 for implementing this! :partying_face:

This behaviour is enabled by default on the CLI. QIIME 2 will create a pool in your default cache (or the cache indicated by the new --use-cache flag on pipelines) that will store all intermediate results from a pipeline that is running and will attempt to reuse the results in this pool should you rerun the pipeline after a failure. The pool will be deleted on pipeline success.

If you want to specify a pool to use (that will not be deleted automatically on pipeline success) provide the --recycle-pool flag followed by a key to be used for the pool in the cache. If you want to opt out of this behavior, pass the --no-recycle flag.

In the Python API, you must with in a pool to be used for pipeline resumption using the usual syntax for withing in a pool.

from qiime2 import Cache

cache = Cache('cache_path')
pool = Cache.create_pool('pool', reuse=True)

with pool:
    diversity.pipelines.core_metrics(*args, **kwargs)

This will do the exact same thing as

qiime diversity core-metrics <inputs and params> --use-cache 'cache_path' --recycle-pool 'pool' <outputs>

This will hopefully make it so that if you hit your wall time or some other transient error while executing a pipeline you do not lose all the progress the pipeline made before it failed.

NOTE: If you change any of your inputs or parameters to a pipeline it may not be possible to reuse all of the intermediate results created by the previous run; however, QIIME 2 will still reuse any results not implicated by the changed arguments.

Output Collections

It is now possible (also thanks to @Oddant1 :pray:t3:) to return collections of artifacts as a single output.

On the CLI, output collections will need to be given a directory that does not exist yet (the same as --output-dir). They will create this directory then write all artifacts to it along with a .order file that simply contains the names of all of the artifacts in the collection in order.

In the Python API, a ResultCollection object will be returned that can be accessed in much the same way as a dictionary with the addition of a validate method that will run validate on all artifacts in the collection. .save can be called on ResultCollections to save them to disk using the exact same rules as the CLI. ResultCollection.load may be called to load a directory into a ResultCollection object in the same way as a single artifact may be loaded.

q2-quality-control

@jordenrabasco added three new commands for using decontam in QIIME 2:

  • decontam-identify - Supports identifying contaminants based on negative controls using either frequency information (quantitative measures) or feature prevalence in controls.
  • decontam-score-viz - Histrogram summary of contaminants with optional normalization of feature-counts.
  • decontam-remove - (experimental) Filter feature table by the scores. This may be replaced by feature-table's filter-features in the future.

:bangbang: BREAKING CHANGES :bangbang:

  • q2cli

    • @colinvwood added the commands qiime tools list-types and qiime tools list-formats that replace the --show-importable-types and --show-importable-formats flags to the qiime tools import command. The new commands list descriptions for each available semantic type or format where available and allow only queries of interest to be listed.
  • q2-composition

    • @gregcaporaso addressed an issue in da-barplot where the visualization made
      assumptions about the feature id schema. da-barplot previously split feature ids on semicolons for readability in figures, assuming that the different semicolon-delimited fields were different taxonomic levels. However, there is no guarantee that semicolons in feature ids are always intended to be level delimiters, or that if there are intended to be level delimiters that they would always be semicolons (for example, | is a commonly used delimiter as well). Users must now provide the --p-level-delimiter ';' parameter to achieve the previous behavior.

Here are the highlights of the release:

  • QIIME 2 Framework

    • @Oddant1 fixed a race condition that could occur when processes were cleaning up on exit :running_man:
  • q2-composition

    • @cherman2 fixed a bug :bug: in da-barplot where links :link: to subplots with metadata values that included spaces were broken.
    • @lizgehret fixed a :beetle: in ancombc that caused undesirable string splitting in the tabulate visualizer when a single reference_level column::value pair was provided. Thanks to @arwqiime for bringing this to our attention! :hugs:
    • @lizgehret added metadata column type enforcement in ancombc, allowing for CategoricalMetadata columns containing integer values to be treated as discrete groups when included in the formula :heavy_division_sign: :heavy_plus_sign:
    • @lizgehret added a unit test suite to the tabulate visualizer :newspaper:
  • q2-feature-table

    • @cherman2 added support for all FeatureTable types to transpose. Now any feature table can be transposed :tada: This will address issues like the one @emmlemore detailed in their post on the forum! Thanks @emmlemore
  • q2-fmt

    • @cherman2 added a method called feature-peds. This calculates what proportion of subjects engrafted each donor feature. :poop:
    • @cherman2 refactored sample-peds to match the implementation of feature-peds. :tada:
    • @cherman2 fixed a bug :bug: that allowed FeatureTable[Composition] in as an input for sample-peds.
    • @cherman2 added a drop_incomplete_timepoint parameter to sample-peds. This will enable dropping any time points with large numbers of samples missing! :tada:
    • @cherman2 added a level delimiter parameter in plot-heatmap that allows users to split taxonomic strings :level_slider:
  • q2-longitudinal

    • @lizgehret and @colinvwood fixed a :bug: in the feature-volatility visualizer caused by blank values in NumericMetadata columns :no_entry:
  • q2-sample-classifier

    • @crusher083 added support for additional base estimators in Adaboost estimators :boom:
  • q2-taxa

    • @gregcaporaso added support for FeatureTable[PresenceAbsence] as input to barplot. This is useful to support some of our QIIME 2 end-to-end shotgun metagenomics workflows (which are coming soon!).
    • @nicholas_bokulich updated barplot :bar_chart: by making FeatureData[Taxonomy] an optional input. For this use-case, feature labels are parsed from the Feature :id:s.
  • q2-types

    • @gregcaporaso added the ImmutableMetadata type, which is intended to house QIIME 2 metadata in an artifact. This enables actions to output metadata, which previous wasn't possible since QIIME 2 actions can only output artifacts and visualizations. If an ImmutableMetadata artifact is exported, it will be a plain-old (mutable) metadata file.
    • @Oddant1 added support for numeric sample-ids :1234:

Documentation Updates :books:

  • Cancer Microbiome Intervention Tutorial

    • Fixed typos in the Cancer Microbiome Intervention Tutorial pointed out by Amanda Birmingham. :computer: Thanks Amanda!
  • User docs

    • @gregcaporaso added a note about the Silva taxonomy classifiers to the Data Resources page of the docs. Specifically, the Silva classifiers and reference files provided on the QIIME 2 webiste include species-level taxonomy. While Silva annotations do include species, Silva does not curate the species-level taxonomy so this information may be unreliable. In a future version of QIIME 2 we will no longer include species-level information in our Silva taxonomy classifiers. This is discussed on the QIIME 2 Forum here (see Species-labels: caveat emptor!) and on GitHub. Thanks to @wasade for bringing this to our attention!
  • Developer docs

    • @crusher083 added some new section headers and examples to the Python 3 API for improved readability. Thanks @crusher083! :nerd_face:
    • @oddant1 added documentation for Parsl, Pipeline Resumption, and Collections :cowboy_hat_face:
2 Likes