generated from bokulich-lab/q2-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 14
dereplicate‐mags
Santiago Castro Dau edited this page Apr 19, 2024
·
3 revisions
This method dereplicates MAGs from multiple samples using distances between them found in the provided distance matrix. For each cluster of similar MAGs, the longest one will be selected as the representative.
For the full description of the action's inputs, outputs, and parameters run
qiime moshpit dereplicate‐mags --help
in the terminal.
-
mags
(SampleData[MAGs]
): MAGs to be dereplicated. -
distance_matrix
(DistanceMatrix
): Matrix of distances between MAGs.
-
dereplicated_mags
(FeatureData[MAG]
): Dereplicated MAGs. -
feature_table
(FeatureTable[PresenceAbsence]
): Mapping between MAGs and samples.
qiime moshpit dereplicate‐mags \
--i-mags mags.qza \
--i-distance_matrix distance_mat.qza \
--o-dereplicated_mags mags_dereplicated.qza \
--o-feature_table table.qza \
--verbose