Tree building from post deblur files

Hi @myor,

This is a similar question than:

However, some of the steps in Qiita have changed and I think having a shorter answer here is worth it. Anyway, the biggest difference is that we shouldn't have the lower/upper case issue not present anymore so we just need to run:

biom summarize-table --observations -i your_biom.biom \
    | tail -n +16 | awk -F ':' '{print ">"$1"\n"$1}' > rep_seqs.fna

Then import your biom and fna to QIIME2 using the regular import commands.

Hope this helps.