This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin is the first choice of wizard lizards for generalized microbiome data visualization!

version: 0.0.1.dev0
website: https://github.com/qiime2/q2-vizard
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org

Actions

NameTypeShort Description
heatmapvisualizerHeatmap
scatterplot-2dvisualizer2D Scatterplot
lineplotvisualizerLineplot
boxplotvisualizerBoxplot


vizard heatmap

Basic heatmap for visualizing three Metadata measures.

Parameters

metadata: Metadata

Any metadata-like input that contains at least three measures for visualizing, one of which must be numeric.[required]

x_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric or categorical measure from the input Metadata that should be plotted on the y-axis.[required]

gradient_measure: Str

Numeric measure from the input Metadata that should be used to represent the color gradient in the heatmap.[required]

title: Str

The title of the heatmap.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

heatmap

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/heatmap/1/metadata.tsv'

qiime vizard heatmap \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-gradient-measure a \
  --o-visualization heatmap.qzv

vizard scatterplot-2d

Basic 2D scatterplot for visualizing two numeric Metadata measures with optional categorical color grouping.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[optional]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[optional]

color_by: Str

Categorical measure from the input Metadata that should be used for color-coding the scatterplot.[optional]

title: Str

The title of the scatterplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

scatterplot_defaults

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/1/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --o-visualization scatterplot.qzv

scatterplot_all_measures

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/scatterplot-2d/2/metadata.tsv'

qiime vizard scatterplot-2d \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-color-by group \
  --o-visualization scatterplot.qzv

vizard lineplot

Basic lineplot for visualizing two numeric Metadata measures with optional grouping. All numeric columns present in the Metadata will be available as drop-down options on the Y-axis, but the chosen x_measure remains fixed.

Parameters

metadata: Metadata

Any metadata-like input with at least two numeric measures for visualizing.[required]

x_measure: Str

Numeric measure from the input Metadata that should be plotted on the x-axis.[required]

y_measure: Str

Numeric measure from the input Metadata that should be plotted on the y-axis.[required]

replicate_method: Str % Choices('none', 'median', 'mean')

The method for averaging replicates if present in the chosen x_measure. Available methods are median and mean.[default: 'none']

group_by: Str

Categorical measure from the input Metadata that should be used for grouping the lineplot.[optional]

title: Str

The title of the lineplot.[optional]

Outputs

visualization: Visualization

<no description>[required]

Examples

lineplot_median_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/1/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/2/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-group-by group \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_median_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/3/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method median \
  --p-title 'Lineplot with median replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_mean_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/4/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure x \
  --p-y-measure y \
  --p-replicate-method mean \
  --p-title 'Lineplot with mean replicate method (no grouping).' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_with_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/5/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure a \
  --p-y-measure y \
  --p-group-by group \
  --p-title 'Lineplot with no replicate method, grouped by `group`.' \
  --o-visualization lineplot.qzv

lineplot_no_replicates_no_grouping

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/vizard/lineplot/6/metadata.tsv'

qiime vizard lineplot \
  --m-metadata-file metadata.tsv \
  --p-x-measure b \
  --p-y-measure y \
  --p-title 'Lineplot with no replicate method (no grouping).' \
  --o-visualization lineplot.qzv

vizard boxplot

Basic boxplot for visualizing a numeric Metadata measure grouped by a categorical Metadata measure with choices for the whisker range.

Parameters

metadata: Metadata

Any metadata-like input with at least one numeric measure and one categorical measure for visualizing.[required]

distribution_measure: Str

The numeric measure that will be used to create each box plot distribution.[required]

group_by: Str

The categorical measure that will be used to group the data into separate box plots. If left blank, all data will be represented within a single box.[optional]

whisker_range: Str % Choices('tukeys_iqr', 'percentile', 'minmax')

The range that will be used for calculating the whisker lengths for each box. Options are tukeys_iqr (1.5 IQR clamped to the data extent), percentile (91th/9th percentile), or minmax. Any data points that fall outside of the chosen range will be represented as outliers that are plotted as circular points, unless the suppressOutliers checkbox has been enabled on the rendered visualization.[default: 'percentile']

box_orientation: Str % Choices('horizontal', 'vertical')

The visual orientataion of the boxes (either horizontal or vertical).[default: 'horizontal']

title: Str

The title of the boxplot.[optional]

Outputs

visualization: Visualization

<no description>[required]