-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlauncher.py
executable file
·41 lines (30 loc) · 1.14 KB
/
launcher.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
#!/rigel/cheme/users/jss2278/env/rdkit/bin/python
import os, sys, subprocess, itertools, time
def print_and_save(string):
return
length = int(sys.argv[1])
all_combos = map(list, itertools.product(['H', 'P'], repeat=length))
print "Total combinations of length {}: {}".format(length,len(all_combos))
total = 0
for k,combo in enumerate(all_combos):
t0 = time.time()
seq = "".join(combo)
if k == 0:
print 'Generating configs + moves {} for L = {} ...'.format(k,length)
launch_arg = 'python config_generator.py {}'.format(length)
x = subprocess.Popen(launch_arg, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
#####
print 'Generating trajectory labeled {} for sequence {} ...'.format(k,seq)
if combo.count('H') <= 1:
print '... no states with bonds found'
continue
else:
launch_arg = 'python value_iteration.py {}'.format(seq)
x = subprocess.Popen(launch_arg, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
if x[0].find('cannot') > 0:
print '... no states with bonds found'
continue
print '... finished in {} s'.format(time.time()-t0)
total += 1
#if total >= 10:
# break