Skip to content

Commit

Permalink
Merge pull request #276 from tubiana/patch-1
Browse files Browse the repository at this point in the history
fix b-factor attribute being added via MDAnalysis
  • Loading branch information
BradyAJohnston authored Jul 24, 2023
2 parents 37b7336 + eaaa36f commit e705d8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MolecularNodes/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def att_is_peptide():
{'name': 'vdw_radii', 'value': att_vdw_radii, 'type': 'FLOAT', 'domain': 'POINT'},
{'name': 'res_id', 'value': att_res_id, 'type': 'INT', 'domain': 'POINT'},
{'name': 'res_name', 'value': att_res_name, 'type': 'INT', 'domain': 'POINT'},
{'name': 'b_factor', 'value': att_b_factor, 'type': 'float', 'domain': 'POINT'},
{'name': 'b_factor', 'value': att_b_factor, 'type': 'FLOAT', 'domain': 'POINT'},
{'name': 'chain_id', 'value': att_chain_id, 'type': 'INT', 'domain': 'POINT'},
{'name': 'atom_types', 'value': att_atom_type, 'type': 'INT', 'domain': 'POINT'},
{'name': 'is_backbone', 'value': att_is_backbone, 'type': 'BOOLEAN', 'domain': 'POINT'},
Expand Down Expand Up @@ -493,4 +493,4 @@ def panel(layout_function, scene):
col.separator()

col.prop(item, "name")
col.prop(item, "selection")
col.prop(item, "selection")

0 comments on commit e705d8a

Please sign in to comment.