#plot in space but change to a gene or metadata valueplotSpace(myobj, colour.by ='Gnb4', include.fil = F)
#plot in space with separation by cluster (group.by is useful for viewing multiple sections as well)plotSpace(myobj, group.by ='cluster', colour.by ='Gnb4')
Dimensionally Reduced Space
### DIM REDUCED SPACE with plotDim()#auto coloured by clusterplotDim(myobj)
#option to colour by gene/metadata plotDim(myobj, colour.by='Gnb4')
plotDim(myobj, colour.by ='virus')
Gene Expression Box Plots
### MARKER GENE BOX PLOTS#Plot a gene's expression across clustersgeneBoxPlot(myobj, 'Gnb4')
#Plot the gene expression profile of a specified clusterclusterBoxPlot(myobj, clus='5')
#or simply plot the gene expression for every clusterclusterBoxPlot(myobj)