Skip to content

Commit

Permalink
SOF-7136: use new_label col in U block to create lookup table
Browse files Browse the repository at this point in the history
  • Loading branch information
pranabdas committed Dec 24, 2023
1 parent 382a542 commit 5233c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion express/parsers/apps/espresso/formats/txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ def parse_hubbard_v(self) -> Dict[str, list]:
cols = re.sub(r"([\s\t\r\n])+", " ", row.strip()).split(" ")
u_dict.append(
{
"atomicSpecies": cols[2],
"atomicSpecies": cols[5], # new_label col
"orbitalName": cols[6],
}
)
Expand Down

0 comments on commit 5233c18

Please sign in to comment.