Hello, I am working on a meta-analysis task and I want to combine 3 different datasets with the following command: Usage: qiime feature-table merge [OPTIONS]
Combines feature tables using the overlap_method
provided.
Inputs:
--i-tables ARTIFACTS... List[FeatureTable[Frequency]¹ |
FeatureTable[RelativeFrequency]²]
The collection of feature tables to be merged.
[required]
Parameters:
--p-overlap-method VALUE Str % Choices('average',
'error_on_overlapping_feature', 'error_on_overlapping_sample', 'sum')¹ |
Str % Choices('average', 'error_on_overlapping_feature',
'error_on_overlapping_sample')²
Method for handling overlapping ids.
[default: 'error_on_overlapping_sample']
Outputs:
--o-merged-table ARTIFACT FeatureTable[Frequency]¹ |
FeatureTable[RelativeFrequency]²
The resulting merged feature table. [required]
I had two questions
How and with what method does this command combine different datasets (--p-overlap-method VALUE Str % Choices('average',
'error_on_overlapping_feature', 'error_on_overlapping_sample', 'sum')¹ |
Str % Choices('average', 'error_on_overlapping_feature',
'error_on_overlapping_sample')²), and in the second question, is this correct?