37
37
38
38
39
39
def _names_column (name , aliases ):
40
- return ', ' .join (["\033 [1m{}\033 [0m" .format (name ), * [a for a in aliases if a != name ]])
40
+ return ", " .join (["\033 [1m{}\033 [0m" .format (name ), * [a for a in aliases if a != name ]])
41
41
42
42
43
43
def _formatted_table_import (bsets ):
44
- """generates a formatted table (using tabulate) for the given list of basis sets, showing a sequencial number"""
45
-
44
+ """generates a formatted table (using tabulate) for the given list of basis sets, shows a sequencial number"""
46
45
47
46
def row (num , bset ):
48
47
return (
49
- num + 1 ,
48
+ num + 1 ,
50
49
bset .element ,
51
50
_names_column (bset .name , bset .aliases ),
52
- ', ' .join (bset .tags ),
53
- bset .n_el if bset .n_el else ' <unknown>' ,
51
+ ", " .join (bset .tags ),
52
+ bset .n_el if bset .n_el else " <unknown>" ,
54
53
bset .version ,
55
- )
54
+ )
56
55
57
56
table_content = [row (n , b ) for n , b in enumerate (bsets )]
58
- return tabulate .tabulate (table_content , headers = [' Nr.' , ' Sym' , ' Names' , ' Tags' , ' # Val. e⁻' , ' Version' ])
57
+ return tabulate .tabulate (table_content , headers = [" Nr." , " Sym" , " Names" , " Tags" , " # Val. e⁻" , " Version" ])
59
58
60
59
61
60
def _formatted_table_list (bsets ):
62
- """generates a formatted table (using tabulate) for the given list of basis sets, showing the ID """
61
+ """generates a formatted table (using tabulate) for the given list of basis sets, shows the UUID """
63
62
64
63
def row (bset ):
65
64
return (
66
65
bset .uuid ,
67
66
bset .element ,
68
67
_names_column (bset .name , bset .aliases ),
69
- ', ' .join (bset .tags ),
70
- bset .n_el if bset .n_el else ' <unknown>' ,
68
+ ", " .join (bset .tags ),
69
+ bset .n_el if bset .n_el else " <unknown>" ,
71
70
bset .version ,
72
- )
71
+ )
73
72
74
73
table_content = [row (b ) for b in bsets ]
75
- return tabulate .tabulate (table_content , headers = ['ID' , ' Sym' , ' Names' , ' Tags' , ' # Val. e⁻' , ' Version' ])
74
+ return tabulate .tabulate (table_content , headers = ["ID" , " Sym" , " Names" , " Tags" , " # Val. e⁻" , " Version" ])
76
75
77
76
78
- @verdi_data .group (' gaussian.basisset' )
77
+ @verdi_data .group (" gaussian.basisset" )
79
78
def cli ():
80
79
"""Manage basis sets for GTO-based codes"""
81
- pass
82
80
83
81
82
+ # fmt: off
84
83
@cli .command ('import' )
85
84
@click .argument ('basisset_file' , type = click .File (mode = 'r' ))
86
85
@click .option ('--sym' , '-s' , help = "filter by atomic symbol" )
87
- @click .option ('tags' , '--tag' , '-t' , multiple = True ,
88
- help = "filter by a tag (all tags must be present if specified multiple times)" )
89
- @click .option ('fformat' , '-f' , '--format' ,
90
- type = click .Choice (['cp2k' , ]), default = 'cp2k' ,
91
- help = "the format of the basis set file" )
92
- @click .option ('--duplicates' , type = click .Choice (['ignore' , 'error' , 'new' ]), default = 'ignore' ,
93
- help = "Whether duplicates should be ignored, produce an error or uploaded as new version" )
86
+ @click .option (
87
+ 'tags' , '--tag' , '-t' ,
88
+ multiple = True ,
89
+ help = "filter by a tag (all tags must be present if specified multiple times)" )
90
+ @click .option (
91
+ 'fformat' , '-f' , '--format' , type = click .Choice (['cp2k' ]), default = 'cp2k' ,
92
+ help = "the format of the basis set file" )
93
+ @click .option (
94
+ '--duplicates' ,
95
+ type = click .Choice (['ignore' , 'error' , 'new' ]), default = 'ignore' ,
96
+ help = "Whether duplicates should be ignored, produce an error or uploaded as new version" )
97
+ # fmt: on
94
98
@decorators .with_dbenv ()
95
99
def import_basisset (basisset_file , fformat , sym , tags , duplicates ):
96
100
"""
@@ -101,12 +105,12 @@ def import_basisset(basisset_file, fformat, sym, tags, duplicates):
101
105
102
106
loaders = {
103
107
"cp2k" : BasisSet .from_cp2k ,
104
- }
108
+ }
105
109
106
110
filters = {
107
111
'element' : lambda x : not sym or x == sym ,
108
112
'tags' : lambda x : not tags or set (tags ).issubset (x ),
109
- }
113
+ }
110
114
111
115
bsets = loaders [fformat ](basisset_file , filters , duplicates )
112
116
@@ -124,9 +128,10 @@ def import_basisset(basisset_file, fformat, sym, tags, duplicates):
124
128
echo .echo (_formatted_table_import (bsets ))
125
129
echo .echo ("" )
126
130
127
- indexes = click .prompt ("Which Gaussian Basis Set do you want to add?"
128
- " ('n' for none, 'a' for all, comma-seperated list or range of numbers)" ,
129
- value_proc = lambda v : click_parse_range (v , len (bsets )))
131
+ indexes = click .prompt (
132
+ "Which Gaussian Basis Set do you want to add?"
133
+ " ('n' for none, 'a' for all, comma-seperated list or range of numbers)" ,
134
+ value_proc = lambda v : click_parse_range (v , len (bsets )))
130
135
131
136
for idx in indexes :
132
137
echo .echo_info ("Adding Gaussian Basis Set for: {b.element} ({b.name})... " .format (b = bsets [idx ]), nl = False )
@@ -135,12 +140,10 @@ def import_basisset(basisset_file, fformat, sym, tags, duplicates):
135
140
136
141
137
142
@cli .command ('list' )
138
- @click .option ('-s' , '--sym' , type = str , default = None ,
139
- help = "filter by a specific element" )
140
- @click .option ('-n' , '--name' , type = str , default = None ,
141
- help = "filter by name" )
142
- @click .option ('tags' , '--tag' , '-t' , multiple = True ,
143
- help = "filter by a tag (all tags must be present if specified multiple times)" )
143
+ @click .option ('-s' , '--sym' , type = str , default = None , help = "filter by a specific element" )
144
+ @click .option ('-n' , '--name' , type = str , default = None , help = "filter by name" )
145
+ @click .option (
146
+ 'tags' , '--tag' , '-t' , multiple = True , help = "filter by a tag (all tags must be present if specified multiple times)" )
144
147
@decorators .with_dbenv ()
145
148
def list_basisset (sym , name , tags ):
146
149
"""
@@ -171,6 +174,7 @@ def list_basisset(sym, name, tags):
171
174
echo .echo ("" )
172
175
173
176
177
+ # fmt: off
174
178
@cli .command ('dump' )
175
179
@arguments .DATA (type = DataParamType (sub_classes = ("aiida.data:gaussian.basisset" ,)))
176
180
@click .option ('-s' , '--sym' , type = str , default = None ,
@@ -181,6 +185,7 @@ def list_basisset(sym, name, tags):
181
185
help = "filter by a tag (all tags must be present if specified multiple times)" )
182
186
@click .option ('output_format' , '-f' , '--format' , type = click .Choice (['cp2k' , ]), default = 'cp2k' ,
183
187
help = "Chose the output format for the basiset: " + ', ' .join (['cp2k' , ]))
188
+ # fmt: on
184
189
@decorators .with_dbenv ()
185
190
def dump_basisset (sym , name , tags , output_format , data ):
186
191
"""
@@ -192,7 +197,7 @@ def dump_basisset(sym, name, tags, output_format, data):
192
197
193
198
writers = {
194
199
"cp2k" : BasisSet .to_cp2k ,
195
- }
200
+ }
196
201
197
202
if data :
198
203
# if explicit nodes where given the only thing left is to make sure no filters are present
0 commit comments