1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# ----------------------------------------------------------------------------
# Copyright (c) 2011-2017, The BIOM Format Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
import biom.util
import biom.parse
import h5py
def write_biom_table(table, fmt, filepath):
"""Write table in specified format to filepath"""
if fmt not in ['hdf5', 'json', 'tsv']:
raise ValueError("Unknown file format")
if fmt == 'json':
with open(filepath, 'w') as f:
f.write(table.to_json(biom.parse.generatedby()))
elif fmt == 'tsv':
with open(filepath, 'w') as f:
f.write(table)
f.write('\n')
else:
with h5py.File(filepath, 'w') as f:
table.to_hdf5(f, biom.parse.generatedby())
|