This file is indexed.

/usr/lib/python2.7/dist-packages/pbsuite/utils/mergeFaQu.py is in python-pbsuite-utils 15.8.24+dfsg-2.

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
#!/usr/bin/python
import sys

from pbsuite.utils.FileHandlers import mergeFastaQual

if __name__ == '__main__':
    f = mergeFastaQual(sys.argv[1], sys.argv[2])
    for i in f:
        print f[i].toString(),