/usr/bin/biom is in python-biom-format 2.1+dfsg-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/bin/sh
#-----------------------------------------------------------------------------
# Copyright (c) 2011-2013, 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.
#-----------------------------------------------------------------------------
# __author__ = "Greg Caporaso"
# __copyright__ = "Copyright 2011-2013, The BIOM Format Development Team"
# __credits__ = ["Daniel McDonald",
# "Greg Caporaso",
# "Jai Ram Rideout"]
# __license__ = "BSD"
# __url__ = "http://biom-format.org"
# __version__ = "2.0.1-dev"
# __maintainer__ = "Greg Caporaso"
# __email__ = "gregcaporaso@gmail.com"
export PYTHONPATH=/usr/lib/python`python --version 2>&1 | grep -o '[1-9]\.[0-9]\+'`/dist-packages
exec pyqi --driver-name biom --command-config-module biom.interfaces.optparse.config -- "$@"
|