-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpgresCreateTimeit.py
executable file
·59 lines (50 loc) · 1.4 KB
/
pgresCreateTimeit.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import sys
import timeit
if __name__ == '__main__':
if len(sys.argv) != 3:
print "Usage: %s <filename> <fa/fq>" % sys.argv[0]
exit(1)
filename = sys.argv[1]
fafq = sys.argv[2]
fqrunStatement = """
create.create_db(FASTQFIELDTYPES, iterfunc)
theFile.close()
"""
fqsetupStatement = """
import os, sys
import create
thisdir = sys.path[0]
libdir = os.path.abspath(os.path.join(thisdir, '..', '..', 'screed'))
sys.path.insert(0, libdir)
from fastq import fqiter
create.droptables()
FASTQFIELDTYPES = ('name', 'annotations', 'sequence', 'quality')
theFile = open('%s', 'rb')
iterfunc = fqiter(theFile)
""" % filename
farunStatement = """
create.create_db(FASTAFIELDTYPES, iterfunc)
theFile.close()
"""
fasetupStatement = """
import os, sys
import create
thisdir = sys.path[0]
libdir = os.path.abspath(os.path.join(thisdir, '..', '..', 'screed'))
sys.path.insert(0, libdir)
from fasta import faiter
create.droptables()
FASTAFIELDTYPES = ('name', 'description', 'sequence')
theFile = open('%s', 'rb')
iterfunc = faiter(theFile)
""" % filename
t = None
if fafq == 'fasta':
t = timeit.Timer(farunStatement, fasetupStatement)
elif fafq == 'fastq':
t = timeit.Timer(fqrunStatement, fqsetupStatement)
else:
raise ValueError("Invalid db type specified: %s" % fafq)
print "[PGRES CREATE]%s:" % filename
print t.repeat(2, 1)