I have generated a taxa barplot for 56 samples, everything went smoothly.
However, now I would like to separate each of those samples and put them into their own plot (so I would have 56 individual taxa barplots instead of one w/ 56 samples). Is this possible?
If you want to do this in QIIME, you could use the qiime feature-table filter-samples function to get a single sample, and then generate the bar chart. (You could also use this in general to separate by say, group.)
The other option I can come up with would be to export your data to your favorite plotting program, and generate them there. Depending on what your inclination is, you might be able to script that. If you're a python or R-user, there are direct interfaces. You could also potentially extract your table to a text file, and then import into something like excel, SAS, prisma, etc.
I don't think there is a more automated way to do this, but @colinbrislawn tends to have more creative solutions qiime-y than I do. (-man seems to be his not-so-secret superhero identity.)
I like Justine’s suggestion of building this graph in R or python, as these include fully flexible plotting libraries. I don’t know how you could do this using Qiime…
I like that idea too. I tend to sway towards python, but I was just wondering if there was an easy way to do this in qiime before I played around with something else.