1
RNA structures (DSSR) / Re: Can 3DNA DSSR handle Left-handed DNA?
« Last post by xiangjun on December 24, 2025, 10:58:53 am »As a follow-up to my previous response, DSSR v2.7.1-2025dec22 checks the stereochemistry of sugar. For each L-sugar, the JSON output will contain the key/value: "is_L_sugar": true in the nts object.
For example, running the following DSSR command on PDB entry 4WB2:
will generate the following JSON output (excerpt):
In version v2.7.0-2025dec09, DSSR checks for flipped base pairs relative to the backbone direction. In this aspect, the L-form shares the same topology as Z-DNA, and both are left-handed helices. In version v2.7.1-2025dec22, DSSR takes into account the stereochemistry of the sugar to clearly distinguish between L and Z-form DNAs based on their L- and D-sugar configurations.
In this process, DSSR has been enhanced in multiple areas like classification and rebuilding by incorporating the L-form into a comprehensive framework. I highly value user feedback because it provides new insights that I might otherwise overlook. Once I fully grasp an issue, it often leads to an improved version of DSSR.
Xiang-Jun
For example, running the following DSSR command on PDB entry 4WB2:
Code: [Select]
x3dna-dssr -i=4wb2.pdb --json | jq '.nts[] | {nt_id, is_L_sugar}'will generate the following JSON output (excerpt):
Code: [Select]
......
{
"nt_id": "D.0G35",
"is_L_sugar": true
}
{
"nt_id": "D.0C36",
"is_L_sugar": true
}
......In version v2.7.0-2025dec09, DSSR checks for flipped base pairs relative to the backbone direction. In this aspect, the L-form shares the same topology as Z-DNA, and both are left-handed helices. In version v2.7.1-2025dec22, DSSR takes into account the stereochemistry of the sugar to clearly distinguish between L and Z-form DNAs based on their L- and D-sugar configurations.
In this process, DSSR has been enhanced in multiple areas like classification and rebuilding by incorporating the L-form into a comprehensive framework. I highly value user feedback because it provides new insights that I might otherwise overlook. Once I fully grasp an issue, it often leads to an improved version of DSSR.
Xiang-Jun

Recent Posts