mailr3847 - /1.3/generic_fns/sequence.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on November 23, 2007 - 15:38:
Author: bugman
Date: Fri Nov 23 15:32:23 2007
New Revision: 3847

URL: http://svn.gna.org/viewcvs/relax?rev=3847&view=rev
Log:
Converted the load_PDB_sequence() class method to a module function.


Modified:
    1.3/generic_fns/sequence.py

Modified: 1.3/generic_fns/sequence.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/sequence.py?rev=3847&r1=3846&r2=3847&view=diff
==============================================================================
--- 1.3/generic_fns/sequence.py (original)
+++ 1.3/generic_fns/sequence.py Fri Nov 23 15:32:23 2007
@@ -40,6 +40,46 @@
     # Print the sequence.
     for i in xrange(len(relax_data_store.res[run])):
         print "%-8i%-8s%-10i" % (relax_data_store.res[run][i].num, 
relax_data_store.res[run][i].name, relax_data_store.res[run][i].select)
+
+
+def load_PDB_sequence():
+    """Function for loading the sequence out of a PDB file.
+
+    This needs to be modified to handle multiple peptide chains.
+    """
+
+    # Print out.
+    print "\nLoading the sequence from the PDB file.\n"
+
+    # Reassign the sequence of the first structure.
+    if relax_data_store.pdb[run].structures[0].peptide_chains:
+        res = 
relax_data_store.pdb[run].structures[0].peptide_chains[0].residues
+        molecule = 'protein'
+    elif relax_data_store.pdb[run].structures[0].nucleotide_chains:
+        res = 
relax_data_store.pdb[run].structures[0].nucleotide_chains[0].residues
+        molecule = 'nucleic acid'
+    else:
+        raise RelaxNoPdbChainError
+
+    # Add the run to 'relax_data_store.res'.
+    relax_data_store.res.add_list(run)
+
+    # Loop over the sequence.
+    for i in xrange(len(res)):
+        # Append a data container.
+        relax_data_store.res[run].add_item()
+
+        # Residue number.
+        relax_data_store.res[run][i].num = res[i].number
+
+        # Residue name.
+        if molecule == 'nucleic acid':
+            relax_data_store.res[run][i].name = res[i].name[-1]
+        else:
+            relax_data_store.res[run][i].name = res[i].name
+
+        # Select the residue.
+        relax_data_store.res[run][i].select = 1
 
 
 def read(file=None, dir=None, mol_name_col=None, res_num_col=0, 
res_name_col=1, spin_num_col=None, spin_name_col=None, sep=None):
@@ -254,52 +294,3 @@
 
     # Close the results file.
     seq_file.close()
-
-
-
-
-class Sequence:
-    def __init__(self, relax):
-        """Class containing functions specific to amino-acid sequence."""
-
-        self.relax = relax
-
-
-    def load_PDB_sequence(self, run=None):
-        """Function for loading the sequence out of a PDB file.
-
-        This needs to be modified to handle multiple peptide chains.
-        """
-
-        # Print out.
-        print "\nLoading the sequence from the PDB file.\n"
-
-        # Reassign the sequence of the first structure.
-        if relax_data_store.pdb[run].structures[0].peptide_chains:
-            res = 
relax_data_store.pdb[run].structures[0].peptide_chains[0].residues
-            molecule = 'protein'
-        elif relax_data_store.pdb[run].structures[0].nucleotide_chains:
-            res = 
relax_data_store.pdb[run].structures[0].nucleotide_chains[0].residues
-            molecule = 'nucleic acid'
-        else:
-            raise RelaxNoPdbChainError
-
-        # Add the run to 'relax_data_store.res'.
-        relax_data_store.res.add_list(run)
-
-        # Loop over the sequence.
-        for i in xrange(len(res)):
-            # Append a data container.
-            relax_data_store.res[run].add_item()
-
-            # Residue number.
-            relax_data_store.res[run][i].num = res[i].number
-
-            # Residue name.
-            if molecule == 'nucleic acid':
-                relax_data_store.res[run][i].name = res[i].name[-1]
-            else:
-                relax_data_store.res[run][i].name = res[i].name
-
-            # Select the residue.
-            relax_data_store.res[run][i].select = 1




Related Messages


Powered by MHonArc, Updated Fri Nov 23 15:40:12 2007