This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]

This QIIME 2 plugin wraps Emperor and supports interactive visualization of ordination plots.

version: 2024.10.0
website: http://biocore.github.io/emperor/build/html/index.html
user support:
Please post to the QIIME 2 forum for help with this plugin: https://forum.qiime2.org
citations:
Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Actions

NameTypeShort Description
plotvisualizerVisualize and Interact with Principal Coordinates Analysis Plots
procrustes-plotvisualizerVisualize and Interact with a procrustes plot
biplotvisualizerVisualize and Interact with Principal Coordinates Analysis Biplot


emperor plot

Generates an interactive ordination plot where the user can visually integrate sample metadata.

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

pcoa: PCoAResults

The principal coordinates matrix to be plotted.[required]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

ignore_pcoa_features: Bool

Biplot arrows cannot be visualized using this method. If you want to visualize biplot arrows use the biplot method. Enabling this setting will ignore any PCoA features that are present, otherwise, if PCoA features are detected an error will be raised.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

emperor_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/plot/1/sample-metadata.tsv'

qiime emperor plot \
  --i-pcoa pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor procrustes-plot

Plot two procrustes-fitted matrices

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

reference_pcoa: PCoAResults

The reference ordination matrix to be plotted.[required]

other_pcoa: PCoAResults

The "other" ordination matrix to be plotted (the one that was fitted to the reference).[required]

m2_stats: ProcrustesStatistics

The M^2 value of the procrustes analysis & its associated p value.[optional]

Parameters

metadata: Metadata

The sample metadata.[required]

custom_axes: List[Str]

Numeric sample metadata columns that should be included as axes in the Emperor plot.[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

Outputs

visualization: Visualization

<no description>[required]

Examples

procrustes_plot

[Command Line]
[Python API]
[Galaxy]
[R API]
[View Source]
wget -O 'bc-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/bc-pcoa-result.qza'

wget -O 'unw-pcoa-result.qza' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/unw-pcoa-result.qza'

wget -O 'sample-metadata.tsv' \
  'https://amplicon-docs.qiime2.org/en/latest/data/examples/emperor/procrustes-plot/1/sample-metadata.tsv'

qiime emperor procrustes-plot \
  --i-reference-pcoa bc-pcoa-result.qza \
  --i-other-pcoa unw-pcoa-result.qza \
  --m-metadata-file sample-metadata.tsv \
  --o-visualization plot.qzv

emperor biplot

Generates an interactive ordination biplot where the user can visually integrate sample and feature metadata. Vectors representing the n most important features are then plotted in the emperor visualization (5 largest, by default).

Citations

Vázquez-Baeza et al., 2013; Vázquez-Baeza et al., 2017

Inputs

biplot: PCoAResults % Properties('biplot')

The principal coordinates matrix to be plotted.[required]

Parameters

sample_metadata: Metadata

The sample metadata[required]

feature_metadata: Metadata

The feature metadata (useful to manipulate the arrows in the plot).[optional]

ignore_missing_samples: Bool

This will suppress the error raised when the coordinates matrix contains samples that are not present in the metadata. Samples without metadata are included by setting all metadata values to: "This sample has no metadata". This flag is only applied if at least one sample is present in both the coordinates matrix and the metadata.[default: False]

invert: Bool

If specified, the point and arrow coordinates will be swapped.[default: False]

number_of_features: Int % Range(1, None)

The number of most important features (arrows) to display in the ordination. “Importance” is calculated for each feature based on the vector’s magnitude (euclidean distance from origin).[default: 5]

Outputs

visualization: Visualization

<no description>[required]