Hello everyone,
I would like to build an action which operates on multiple input feature tables. I found this similar thread where @thermokarst suggests using the existing merge action from feature-table plugin.
However, the idea behind my action is to build a new artifact based on the individual properties of the input tables.
I looked into original [merge](q2-feature-table/_merge.py at master · qiime2/q2-feature-table · GitHub action and it is not clear for me how multiple inputs are implemented.
Imagine if one have multiple Dataframes and want to do something like this:
!qiime supercoolnewplugin build-groups \
--i-table atacama-table_1.qza \
--i-table atacama-table_2.qza \
--i-table atacama-table_n.qza \
--o-group-array data/atacama-groups.qza
Another question, the result of this action would be a tensor, I've read the discussion of making a built-in semantic type for tensors from last year, are there any solutions for that by now or I will have to create a new semantic type?
Thank you!