Docstring:
Usage: qiime diversity-lib alpha-passthrough [OPTIONS]
Computes a vector of values (one value for each samples in a feature
table) using the scikit-bio implementation of the selected alpha diversity
metric.
Inputs:
--i-table ARTIFACT FeatureTable[Frequency]
The feature table containing the samples for which a
selected metric should be computed. [required]
Parameters:
--p-metric TEXT Choices('fisher_alpha', 'mcintosh_e', 'brillouin_d',
'berger_parker_d', 'osd', 'kempton_taylor_q', 'michaelis_menten_fit',
'lladser_pe', 'chao1', 'esty_ci', 'margalef', 'robbins', 'simpson_e',
'gini_index', 'menhinick', 'ace', 'enspie', 'dominance', 'doubles',
'strong', 'simpson', 'singles', 'chao1_ci', 'goods_coverage',
'mcintosh_d', 'heip_e')
The alpha diversity metric to be computed. [required]
Outputs:
--o-vector ARTIFACT SampleData[AlphaDiversity]
Vector containing per-sample values for the chosen
metric. [required]
Miscellaneous:
--output-dir PATH Output unspecified results to a directory
--verbose / --quiet Display verbose output to stdout and/or stderr during
execution of this action. Or silence output if
execution is successful (silence is golden).
--example-data PATH Write example data and exit.
--citations Show citations and exit.
--help Show this message and exit.
Import:
from qiime2.plugins.diversity_lib.methods import alpha_passthrough
Docstring:
Alpha Passthrough (non-phylogenetic)
Computes a vector of values (one value for each samples in a feature table)
using the scikit-bio implementation of the selected alpha diversity metric.
Parameters
----------
table : FeatureTable[Frequency]
The feature table containing the samples for which a selected metric
should be computed.
metric : Str % Choices('mcintosh_e', 'lladser_pe', 'chao1_ci', 'osd', 'kempton_taylor_q', 'margalef', 'dominance', 'menhinick', 'singles', 'chao1', 'brillouin_d', 'fisher_alpha', 'mcintosh_d', 'esty_ci', 'simpson_e', 'michaelis_menten_fit', 'robbins', 'heip_e', 'simpson', 'doubles', 'berger_parker_d', 'strong', 'gini_index', 'enspie', 'goods_coverage', 'ace')
The alpha diversity metric to be computed.
Returns
-------
vector : SampleData[AlphaDiversity]
Vector containing per-sample values for the chosen metric.