How many tables can you merge in one command of feature table merge?

Oh yeah, you can merge as many tables as you like! Like this:

qiime feature-table merge \
    --i-tables table1.qza \
    --i-tables table2.qza \
    --i-tables table3.qza \
    --i-tables table4.qza \
    --o-merged-table merged-table.qza

This has in fact been solved since 2017 — see the end of the topic you linked to:

You can use --help to read the manual on any CLI command... or here are the docs you are looking for:
https://docs.qiime2.org/2019.10/plugins/available/feature-table/merge/
See also a tutorial example:
https://docs.qiime2.org/2019.10/tutorials/fmt/#merging-denoised-data

Good luck!

3 Likes