I was reading about a similar problem I have with changing the sample names without starting from the beginning, but I didn't understand how to correctly use it.
I've added the new column to the meta data but I don't know what to write in the --p-axis/mode.
This is the command I'm trying to run:
sage: qiime feature-table group [OPTIONS]
Group samples or features in a feature table using metadata to define the
mapping of IDs to a group.
Options:
--i-table ARTIFACT PATH FeatureTable[Frequency]
The table to group samples or features on.
[required]
--p-axis [feature|sample] Along which axis to group. Each ID in the
given axis must exist in metadata.
[required]
--m-metadata-file MULTIPLE PATH
Metadata file or artifact viewable as
metadata. This option may be supplied
multiple times to merge metadata.
[required]
--m-metadata-column MetadataColumn[Categorical]
Column from metadata file or artifact
viewable as metadata. A column defining the
groups. Each unique value will become a new
ID for the table on the given axis.
[required]
--p-mode [median-ceiling|sum|mean-ceiling]
How to combine samples or features within a
group. sum will sum the frequencies across
all samples or features within a group; mean-ceiling will take the ceiling of the
mean of these frequencies; median-ceiling
will take the ceiling of the median of these
frequencies. [required]
--o-grouped-table ARTIFACT PATH FeatureTable[Frequency]
A table that has been grouped along the
given axis. IDs on that axis are replaced
by values in the metadata column.
[required if not passing --output-dir]
--output-dir DIRECTORY Output unspecified results to a directory
--cmd-config PATH Use config file for command options
--verbose Display verbose output to stdout and/or
stderr during execution of this action.
[default: False]
--quiet Silence output if execution is successful
(silence is golden). [default: False]
--help Show this message and exit.
--p-strict / --p-no-strict
Whether the naming needs to be strict (each id in the
table must have a new id). Otherwise, only the ids
described in `metadata` will be renamed and the others
will keep their original id names. [default: False]
I got it!
The problem was that for visualisation I used the wrong metadata, I choose the new on with the new IDs at the SampleID column -> and this worked!