-
Notifications
You must be signed in to change notification settings - Fork 17
/
inputgeneratortest.py
165 lines (125 loc) · 5.17 KB
/
inputgeneratortest.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
"""
/******************************************************************************
This source file is part of the Avogadro project.
This source code is released under the New BSD License, (the "License").
******************************************************************************/
"""
import argparse
import json
import sys
# Some globals:
debug = False
def getOptions():
userOptions = {}
userOptions['Test StringList'] = {}
userOptions['Test StringList']['type'] = 'stringList'
userOptions['Test StringList']['default'] = 0
userOptions['Test StringList']['values'] = \
['Option 1', 'Option 2', 'Option 3']
userOptions['Test String'] = {}
userOptions['Test String']['type'] = 'string'
userOptions['Test String']['default'] = 'default value'
userOptions['Test Integer'] = {}
userOptions['Test Integer']['type'] = 'integer'
userOptions['Test Integer']['default'] = 5
userOptions['Test Integer']['minimium'] = 0
userOptions['Test Integer']['maximum'] = 10
userOptions['Test Integer']['prefix'] = 'Throw '
userOptions['Test Integer']['suffix'] = ' warnings'
userOptions['Test Boolean'] = {}
userOptions['Test Boolean']['type'] = 'boolean'
userOptions['Test Boolean']['default'] = False
userOptions['Test FilePath'] = {}
userOptions['Test FilePath']['type'] = 'filePath'
userOptions['Test FilePath']['default'] = ''
# special parameters -- these should be moved to the top of the widget
userOptions['Title'] = {}
userOptions['Title']['type'] = 'string'
userOptions['Title']['default'] = ''
userOptions['Filename Base'] = {}
userOptions['Filename Base']['type'] = 'string'
userOptions['Filename Base']['default'] = 'job'
userOptions['Processor Cores'] = {}
userOptions['Processor Cores']['type'] = 'integer'
userOptions['Processor Cores']['default'] = 4
userOptions['Calculation Type'] = {}
userOptions['Calculation Type']['type'] = "stringList"
userOptions['Calculation Type']['default'] = 1
userOptions['Calculation Type']['values'] = \
['Single Point', 'Equilibrium Geometry', 'Frequencies']
userOptions['Theory'] = {}
userOptions['Theory']['type'] = "stringList"
userOptions['Theory']['default'] = 1
userOptions['Theory']['values'] = ['RHF', 'B3LYP', 'MP2', 'CCSD']
userOptions['Basis'] = {}
userOptions['Basis']['type'] = "stringList"
userOptions['Basis']['default'] = 2
userOptions['Basis']['values'] = \
['STO-3G', '3-21 G', '6-31 G(d)', '6-31 G(d,p)', '6-31+ G(d)',
'6-311 G(d)', 'cc-pVDZ', 'cc-pVTZ', 'LANL2DZ']
userOptions['Multiplicity'] = {}
userOptions['Multiplicity']['type'] = "integer"
userOptions['Multiplicity']['default'] = 1
userOptions['Multiplicity']['minimum'] = 1
userOptions['Multiplicity']['maximum'] = 5
userOptions['Charge'] = {}
userOptions['Charge']['type'] = "integer"
userOptions['Charge']['default'] = 0
userOptions['Charge']['minimum'] = -9
userOptions['Charge']['maximum'] = 9
opts = {}
opts['userOptions'] = userOptions
return opts
def generateInputFile(opts):
output = ''
for key in opts:
output += f'{key}: {opts[key]}\n'
output += '\n\nCurrent molecule:\n$$coords:SZx1y1z0N$$\n'
return output
def generateInput():
# Read options from stdin
stdinStr = sys.stdin.read()
# Parse the JSON strings
opts = json.loads(stdinStr)
# Generate the input file
inp = generateInputFile(opts['options'])
# Basename for input files:
baseName = opts['options']['Filename Base']
# Test for warnings:
numWarnings = opts['options']['Test Integer']
# Test filePath:
filePath = opts['options']['Test FilePath']
# Prepare the result
result = {}
# Input file text -- will appear in the same order in the GUI as they are
# listed in the array:
files = []
files.append({'filename': '%s.opts' % baseName,
'contents': inp})
files.append({'filename': '%s.testFilePath' % baseName,
'filePath': filePath})
if debug:
files.append({'filename': 'debug_info', 'contents': stdinStr})
result['files'] = files
# Specify the main input file. This will be used by MoleQueue to determine
# the value of the $$inputFileName$$ and $$inputFileBaseName$$ keywords.
result['mainFile'] = '%s.opts' % baseName
result['warnings'] = []
for i in range(numWarnings):
result['warnings'].append('Warning number %d...' % (i + 1))
return result
if __name__ == "__main__":
parser = argparse.ArgumentParser('Generate a NWChem input file.')
parser.add_argument('--debug', action='store_true')
parser.add_argument('--print-options', action='store_true')
parser.add_argument('--generate-input', action='store_true')
parser.add_argument('--display-name', action='store_true')
parser.add_argument('--lang', nargs='?', default='en')
args = vars(parser.parse_args())
debug = args['debug']
if args['display_name']:
print("Input Generator Test")
if args['print_options']:
print(json.dumps(getOptions()))
elif args['generate_input']:
print(json.dumps(generateInput()))