From 24af79f5cf3e1bb40728e29dac860255059ca120 Mon Sep 17 00:00:00 2001 From: Marcin Magnus Date: Fri, 25 Oct 2024 19:26:11 -0400 Subject: [PATCH] fix (55): 20.92 %: 86.32% --- rna_tools/rna_pdb_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rna_tools/rna_pdb_tools.py b/rna_tools/rna_pdb_tools.py index b2237175..9a2b1d47 100755 --- a/rna_tools/rna_pdb_tools.py +++ b/rna_tools/rna_pdb_tools.py @@ -1282,7 +1282,7 @@ def radius_of_gyration(N): rg = calc_rg() rgn = radius_of_gyration(N) - print(f'radius of gyration: {rg}; expected for this seqlen ({N}): {rgn} %: {round(rg / rgn * 100, 2)}%') + print(f'radius of gyration: {rg}; expected for this seqlen ({N}): {rgn}, {round(rg / rgn * 100, 2)}%') if args.renum_nmr: if list != type(args.file):