Skip to content

Commit

Permalink
Fix Issue writing mmCIF files,
Browse files Browse the repository at this point in the history
Fixes #1
  • Loading branch information
marcellszi committed Sep 17, 2024
1 parent d852241 commit 35b50af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rna3db/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def write_mmcif_chain(self, output_path, author_id):
f"_entity_poly.pdbx_seq_one_letter_code_can {self[author_id].sequence}\n"
)
struct_asym_str = StructureFile._gen_mmcif_loop_str(
"_struct_asym",
"struct_asym",
[
"id",
"pdbx_blank_PDB_chainid_flag",
Expand All @@ -425,7 +425,7 @@ def write_mmcif_chain(self, output_path, author_id):
[("A", "N", "N", 1, "?")],
)
chem_comp_str = StructureFile._gen_mmcif_loop_str(
"_chem_comp",
"chem_comp",
[
"id",
"type",
Expand Down

0 comments on commit 35b50af

Please sign in to comment.