OpenStructure
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
clustalw.py
Go to the documentation of this file.
1 from ost.bindings import utils
2 from ost import settings, io, seq, LogError
3 import os
4 import subprocess
5 
6 def ClustalW(seq1, seq2=None, clustalw=None, keep_files=False, nopgap=False,
7  clustalw_option_string=False):
8  '''
9  Runs a clustalw multiple sequence alignment. The results are returned as a
10  :class:`~ost.seq.AlignmentHandle` instance.
11 
12  There are two ways to use this function:
13 
14  - align exactly two sequences:
15 
16  :param seq1: sequence_one
17  :type seq1: :class:`~ost.seq.SequenceHandle` or :class:`str`
18 
19  :param seq2: sequence_two
20  :type seq2: :class:`~ost.seq.SequenceHandle` or :class:`str`
21 
22  The two sequences can be specified as two separate function parameters
23  (`seq1`, `seq2`). The type of both parameters can be either
24  :class:`~ost.seq.SequenceHandle` or :class:`str`, but must be the same for
25  both parameters.
26 
27  - align two or more sequences:
28 
29  :param seq1: sequence_list
30  :type seq1: :class:`~ost.seq.SequenceList`
31 
32  :param seq2: must be :class:`None`
33 
34  Two or more sequences can be specified by using a
35  :class:`~ost.seq.SequenceList`. It is then passed as the first function
36  parameter (`seq1`). The second parameter (`seq2`) must be :class:`None`.
37 
38 
39  :param clustalw: path to clustalw executable (used in :func:`~ost.settings.Locate`)
40  :type clustalw: :class:`str`
41  :param nopgap: turn residue-specific gaps off
42  :type nopgap: :class:`bool`
43  :param clustalw_option_string: additional clustalw flags (see http://toolkit.tuebingen.mpg.de/clustalw/help_params)
44  :type clustalw_option_string: :class:`str`
45  :param keep_files: do not delete temporary files
46  :type keep_files: :class:`bool`
47 
48  Note: ClustalW will convert lowercase to uppercase, and change all '.' to '-'.
49  OST will convert and '?' to 'X' before aligning sequences with Clustalw.
50 
51  ClustalW will accept only IUB/IUPAC amino acid and nucleic acid codes:
52 
53  ======= ======================= ======= ============================
54  Residue Name Residue Name
55  ======= ======================= ======= ============================
56  A alanine P proline
57  B aspartate or asparagine Q glutamine
58  C cystine R arginine
59  D aspartate S serine
60  E glutamate T threonine
61  F phenylalanine U selenocysteine
62  G glycine V valine
63  H histidine W tryptophan
64  I isoleucine Y tyrosine
65  K lysine Z glutamate or glutamine
66  L leucine X any
67  M methionine \* translation stop
68  N asparagine \- gap of indeterminate length
69  ======= ======================= ======= ============================
70 
71  '''
72  clustalw_path=settings.Locate(('clustalw', 'clustalw2'),
73  explicit_file_name=clustalw)
74 
75  if seq2!=None:
76  if isinstance(seq1, seq.SequenceHandle) and isinstance(seq2, seq.SequenceHandle):
77  seq_list=seq.CreateSequenceList()
78  seq_list.AddSequence(seq1)
79  seq_list.AddSequence(seq2)
80  elif isinstance(seq1, str) and isinstance(seq2, str):
81  seqh1=seq.CreateSequence("seq1", seq1)
82  seqh2=seq.CreateSequence("seq2", seq2)
83  seq_list=seq.CreateSequenceList()
84  seq_list.AddSequence(seqh1)
85  seq_list.AddSequence(seqh2)
86  else:
87  LogError("WARNING: Specify at least two Sequences")
88  return
89  elif isinstance(seq1, seq.SequenceList):
90  seq_list=seq1
91  else:
92  LogError("WARNING: Specify either two SequenceHandles or one SequenceList")
93  return
94 
95  new_list = seq.CreateSequenceList()
96  for s in seq_list:
97  ss = s.Copy()
98  for i,c in enumerate(ss):
99  if c=='?':
100  ss[i]='X'
101  new_list.AddSequence(ss)
102 
103  seq_list = new_list
104 
105  temp_dir=utils.TempDirWithFiles((seq_list,))
106  out=os.path.join(temp_dir.dirname, 'out.fasta')
107  command='%s -infile="%s" -output=fasta -outfile="%s"' % (clustalw_path,
108  temp_dir.files[0],
109  out)
110  if nopgap:
111  command+=" -nopgap"
112  if clustalw_option_string!=False:
113  command=command+" "+clustalw_option_string #see useful flags: http://toolkit.tuebingen.mpg.de/clustalw/help_params
114 
115  ps=subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
116  ps.stdout.readlines()
117  aln=io.LoadAlignment(out)
118 
119 
120  for sequence in seq_list:
121  for seq_num,aln_seq in enumerate(aln.sequences):
122  if aln_seq.GetName()==sequence.GetName():
123  break
124  aln.SetSequenceOffset(seq_num,sequence.offset)
125  if sequence.HasAttachedView():
126  aln.AttachView(seq_num,sequence.GetAttachedView().Copy())
127 
128  if not keep_files:
129  temp_dir.Cleanup()
130 
131  return aln