From 81ea25b5c29dc651a3953e5f65f16e19ce2f40fc Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Thu, 21 Dec 2023 18:14:29 +0100 Subject: [PATCH] mmcif writer: dont ask --- modules/io/src/mol/mmcif_writer.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/io/src/mol/mmcif_writer.cc b/modules/io/src/mol/mmcif_writer.cc index 4517ed943..e14ff97d3 100644 --- a/modules/io/src/mol/mmcif_writer.cc +++ b/modules/io/src/mol/mmcif_writer.cc @@ -1355,7 +1355,8 @@ namespace { } } - if(entity_infos[entity_idx].poly_type == "polyribonucleotide") { + if(entity_infos[entity_idx].poly_type == "polyribonucleotide" || + entity_infos[entity_idx].poly_type == "polydeoxyribonucleotide/polyribonucleotide hybrid") { entity_infos[entity_idx].mon_ids[mon_id_idx] = "N"; entity_infos[entity_idx].seq_olcs[mon_id_idx] = "N"; entity_infos[entity_idx].seq_can_olcs[mon_id_idx] = "N"; -- GitLab