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('heip_e', 'mcintosh_e', 'simpson', 'chao1_ci',
'robbins', 'brillouin_d', 'kempton_taylor_q', 'ace',
'michaelis_menten_fit', 'berger_parker_d', 'menhinick', 'dominance',
'simpson_e', 'singles', 'doubles', 'margalef', 'gini_index',
'fisher_alpha', 'chao1', 'mcintosh_d', 'lladser_pe', 'enspie', 'esty_ci',
'osd', 'goods_coverage', 'strong')
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).
--examples Show usage examples 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('chao1_ci', 'menhinick', 'dominance', 'strong', 'brillouin_d', 'robbins', 'heip_e', 'fisher_alpha', 'enspie', 'esty_ci', 'doubles', 'margalef', 'mcintosh_e', 'mcintosh_d', 'kempton_taylor_q', 'simpson_e', 'michaelis_menten_fit', 'lladser_pe', 'osd', 'singles', 'ace', 'gini_index', 'berger_parker_d', 'chao1', 'goods_coverage', 'simpson')
The alpha diversity metric to be computed.
Returns
-------
vector : SampleData[AlphaDiversity]
Vector containing per-sample values for the chosen metric.