/usr/bin/tophat2 is in tophat 2.1.0+dfsg-1build1.
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 | #!/bin/bash
prefix="/usr"
pbin=""
if [ "$prefix" = "" ]; then
fl=$(readlink $0)
if [ "$fl" = "" ]; then
pbin=$(dirname $0)
else
pbin=$(dirname $fl)
fi
else
pbin=$prefix/bin
fi
export PATH=$pbin:$PATH
$pbin/tophat "$@"
|