library(biomformat)
min_dense_file = system.file("extdata", "min_dense_otu_table.biom",
package = "biomformat")
x1 = read_biom(min_dense_file)
outfile = tempfile()
write_biom(x1, outfile)
y = read_biom(outfile)
identical(x1, y) # returns FALSE
It looks like the same exact thing happens in the final section of the vignette for this package, which means the chunk output contradicts the written text in the vignette:
