how can I visualize visualization objects in Jupyter? For example, I run feature_table.visualizers.tabulate_seqs(deblur_sequences.representative_sequences)
and all I get is this:
How can I get the visualization I would normally get from using qiime tools view artifact.qzv? Do I have to save it first and then visualize from a saved qzv file?
Now you should have (I hope) a directory called deblur_sqs_vis under /tmp. This directory also should contain sub-directory named data in which there's an index.html file.
2. Use the HTML object in IPython.core.display in order to view this directory
from IPython.core.display import HTML
HTML('<iframe height = 1000, width = 1000, src = "{}/data/index.html"> </iframe>'\
.format(out_dir))