From 2fa27acc8acb8509503fce2f0e1fa5e97462119a Mon Sep 17 00:00:00 2001 From: Donnie Berkholz Date: Wed, 12 Aug 2009 16:41:59 -0700 Subject: [PATCH] Rework naming of secondary-structure types. * Reorder to be more logical * Rename to shorten the width --- pgd/pgd_constants.py | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pgd/pgd_constants.py b/pgd/pgd_constants.py index 9e965c1..0837701 100644 --- a/pgd/pgd_constants.py +++ b/pgd/pgd_constants.py @@ -42,18 +42,18 @@ for choice in AA_CHOICES: ('S', 'S'), )''' SS_CHOICES = ( - ('G', '310 helix'), - #('g', '310 helix (terminal)'), ('H', 'α helix'), #('h', 'α helix (terminal)'), - ('I', 'π helix'), - #('i', 'π helix'), - ('T', 'H-bonded turn'), - #('t', 'H-bonded turn (terminal)'), + ('G', '310 helix'), + #('g', '310 helix (terminal)'), ('E', 'β sheet'), #('e', 'β sheet (terminal)'), - ('B', 'Isolated β-bridge'), + ('T', 'Turn'), + #('t', 'H-bonded turn (terminal)'), ('S', 'Bend'), + ('B', 'β-bridge'), + ('I', 'π helix'), + #('i', 'π helix'), ) PLOT_PROPERTY_CHOICES = [ -- 1.6.0.6