/usr/lib/python2.7/dist-packages/screed/fadbm.py is in python-screed 0.9-2.
This file is owned by root:root, with mode 0o644.
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 | #!/usr/bin/env python
# Copyright (c) 2008-2010, Michigan State University
import sys
from __init__ import read_fasta_sequences
import DBConstants
# A shell interface to the screed FADBM database writing function
if __name__ == "__main__":
# Make sure the user entered the command line arguments correctly
if len(sys.argv) != 2:
sys.stderr.write("ERROR: USAGE IS: %s <dbfilename>\n" % sys.argv[0])
exit(1)
filename = sys.argv[1]
read_fasta_sequences(filename)
print("Database saved in %s%s" % (sys.argv[1], DBConstants.fileExtension))
|