File: TSilmutDialog.cpp

package info (click to toggle)
gentle 1.9%2Bcvs20100605%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,512 kB
  • sloc: cpp: 41,571; ansic: 3,978; sh: 1,420; makefile: 294
file content (514 lines) | stat: -rw-r--r-- 15,352 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
/** \file
	\brief Contains the methods of the TSilmutDialog class, and its helper class TSilmutItem
*/
#include "TSilmutDialog.h"

BEGIN_EVENT_TABLE(TSilmutDialog, wxDialog )
    EVT_SPINCTRL(PD_SILMUT_MAX_XHG,TSilmutDialog::OnSpin)
    EVT_SPINCTRL(PD_SILMUT_MAX_CUT,TSilmutDialog::OnSpin)
    EVT_TEXT(PD_SILMUT_MAX_XHG,TSilmutDialog::OnSpin2)
    EVT_TEXT(PD_SILMUT_MAX_CUT,TSilmutDialog::OnSpin2)
    EVT_CHOICE(PD_SILMUT_EGR,TSilmutDialog::OnChoose)
    EVT_CHECKBOX(PD_SILMUT_ACR,TSilmutDialog::OnACR)
    EVT_BUTTON(PD_SILMUT_OK,TSilmutDialog::OnOK)
    EVT_BUTTON(PD_SILMUT_CANCEL,TSilmutDialog::OnCancel)
    EVT_LISTBOX_DCLICK(PD_SILMUT_LB,TSilmutDialog::OnLbDoubleClick)
    EVT_CHAR_HOOK(TSilmutDialog::OnCharHook)
END_EVENT_TABLE()

void TSilmutDialog::OnCharHook(wxKeyEvent& event)
    {
    int k = event.GetKeyCode () ;
    wxCommandEvent ev ;
    if ( k == WXK_ESCAPE ) OnCancel ( ev ) ;
    else if ( k == WXK_F1 ) myapp()->frame->OnHelp(ev) ;
    else event.Skip() ;
    }

TSilmutDialog::TSilmutDialog ( wxWindow *parent , const wxString &s , int _mode , int _mut_pos , int _mut_dir )
    : wxDialog ( parent , -1 , s )
    {
	myapp()->frame->push_help ( _T("GENtle:Silent_Mutagenesis") ) ;
    running = false ;
    mut_pos = _mut_pos ;
    mut_dir = _mut_dir ;
    SetSize ( 600 , 400 ) ;
    Center () ;
    mode = _mode ;
    
    wxBoxSizer *v0 = new wxBoxSizer ( wxVERTICAL ) ;
    wxBoxSizer *h0 = new wxBoxSizer ( wxHORIZONTAL ) ;
    wxBoxSizer *h1 = new wxBoxSizer ( wxHORIZONTAL ) ;
    wxBoxSizer *h2 = new wxBoxSizer ( wxHORIZONTAL ) ;


	// Max mutations (only for PCR)
	wxStaticText *st = new wxStaticText ( this , -1 , txt("t_silmut_max_xhg") ) ;
    lim_xhg = new wxSpinCtrl ( this , PD_SILMUT_MAX_XHG , _T("2") ,
                            wxDefaultPosition , wxSize ( MYSPINBOXSIZE , -1 ) ,
                            wxSP_ARROW_KEYS , 0 , 9 , 2 ) ;
    allow_cut_removal = new wxCheckBox ( this , PD_SILMUT_ACR , txt("t_silmut_allow_cut_removal") ) ;
    h0->Add ( st , 0 , wxEXPAND|wxALL , 5 ) ;
	h0->Add ( lim_xhg , 0 , wxEXPAND|wxALL , 5 ) ;
	h0->Add ( allow_cut_removal , 0 , wxEXPAND|wxALL , 5 ) ;
	
	// Max cuts
    lim_max = new wxSpinCtrl ( this , PD_SILMUT_MAX_CUT , _T("5") ,
                            wxDefaultPosition , wxSize ( MYSPINBOXSIZE , -1 ) ,
                            wxSP_ARROW_KEYS , 0 , 99 , 5 ) ;
    h1->Add ( new wxStaticText ( this , -1 , txt("t_silmut_max_cut1") ) , 0 , wxEXPAND|wxALL , 5 ) ;
	h1->Add ( lim_max , 0 , wxEXPAND|wxALL , 5 ) ;
    h1->Add ( new wxStaticText ( this , -1 , txt("t_silmut_max_cut2") ) , 0 , wxEXPAND|wxALL , 5 ) ;

	status = new wxStaticText ( this , -1 , _T("") ) ;
	status->Hide() ;

	// Enzyme groups
    wxArrayString z ;
    myapp()->frame->LS->getEnzymeGroups ( z ) ;
    z.Add ( txt("Current") ) ;
    z.Add ( txt("All") ) ;
    z.Sort () ;
    
    egr = new wxChoice ( this , PD_SILMUT_EGR ) ;
    for ( int a = 0 ; a < z.GetCount() ; a++ )
        egr->Append ( z[a] ) ;
    
    if ( mode == M_WHATCUTS ) egr->SetStringSelection ( txt("All") ) ;
    else if ( mode == M_SILMUT ) egr->SetStringSelection ( txt("Current") ) ;
    
    h2->Add ( egr , 0 , wxEXPAND|wxALL , 5 ) ;
    h2->Add ( new wxButton ( this , PD_SILMUT_OK , txt("b_ok") ) , 0 , wxEXPAND|wxALL , 5 ) ;
    h2->Add ( new wxButton ( this , PD_SILMUT_CANCEL , txt("b_cancel") ) , 0 , wxEXPAND|wxALL , 5 ) ;
    
    if ( mut_pos > -1 ) // I have no idea what this is for...
        {
        mut = new wxChoice ( this , PD_SILMUT_EGR ) ;
        h2->Add ( mut , 0 , wxEXPAND|wxALL , 5 ) ;
        }
        
	// List
    lb = new wxListBox ( this , PD_SILMUT_LB , wxDefaultPosition , wxDefaultSize ,
                            0 , NULL , wxLB_SINGLE|wxLB_SORT ) ;
    lb->SetFont ( *MYFONT ( 8 , wxMODERN , wxNORMAL , wxNORMAL ) ) ;
	
	v0->Add ( h0 , 0 , wxEXPAND ) ;
	v0->Add ( h1 , 0 , wxEXPAND ) ;
	v0->Add ( h2 , 0 , wxEXPAND ) ;
	v0->Add ( lb , 1 , wxEXPAND ) ;
	v0->Add ( status , 0 , wxEXPAND ) ;
	
    if ( mode == M_WHATCUTS )
        {
        lim_xhg->SetValue ( 0 ) ;
        lim_xhg->Hide() ;
        st->Hide() ;
        allow_cut_removal->Hide() ;
        }
	
    SetSizer ( v0 ) ;

    if ( mode == M_WHATCUTS ) pd = NULL ;
    else pd = (TPrimerDesign*) parent ;
    last_selection = -1 ;
    }

TSilmutDialog::~TSilmutDialog ()
	{
	myapp()->frame->pop_help () ;
	}

void TSilmutDialog::initme ( TVector *vec , int _from , int _to )
    {
    v = vec ;
    from = _from ;
    to = _to ;
    calc () ;
    showit () ;
    running = true ;
    }
    
void TSilmutDialog::OnACR ( wxCommandEvent &ev )
    {
	OnSpin2 ( ev ) ;
	lim_xhg->Enable ( !allow_cut_removal->GetValue() ) ;
    }
    
void TSilmutDialog::OnLbDoubleClick ( wxCommandEvent &ev )
    {
    OnOK ( ev ) ;
    }
    
wxString TSilmutDialog::getSequence ()
    {
    int i = selID() ;
    if ( i == -1 ) return _T("") ;
    return vs[i].mut ;
    }
    
TRestrictionEnzyme *TSilmutDialog::getEnzyme ()
    {
    int i = selID() ;
    if ( i == -1 ) return NULL ;
    return vs[i].e ;
    }
    
int TSilmutDialog::selID ()
    {
    if ( last_selection == -1 ) return -1 ;
    int a ;
    for ( a = 0 ; a < lb_retro.GetCount() ; a++ )
       if ( lb_retro[a] == last_selection )
          return a ;
    return -1 ;
    }
    
void TSilmutDialog::OnOK ( wxCommandEvent &ev )
    {
    last_selection = lb->GetSelection () ;
    if ( last_selection < 0 )
        EndModal ( wxID_CANCEL ) ; //wxDialog::OnCancel ( ev ) ;
    else
        EndModal ( wxID_OK ) ; //wxDialog::OnOK ( ev ) ;
    }
    
void TSilmutDialog::OnCancel ( wxCommandEvent &ev )
    {
    EndModal ( wxID_CANCEL ) ; //wxDialog::OnCancel ( ev ) ;
    }
    
void TSilmutDialog::OnSpin ( wxSpinEvent &event )
    {
 wxCommandEvent event2 ;
 OnSpin2 ( event2 ) ; 
    }

void TSilmutDialog::OnSpin2 ( wxCommandEvent &event )
    {
    if ( !running ) return ;
    calc () ;
    showit () ;
    }
    
void TSilmutDialog::OnChoose ( wxCommandEvent &event )
    {
    calc () ;
    showit () ;
    }
    
void TSilmutDialog::calc ()
    {
    SetCursor ( *wxHOURGLASS_CURSOR ) ;
    bool acr = allow_cut_removal->GetValue() ;
    wxString orig_aa = getAAresult ( v->getSequence() ) ;
    wxString orig_aa_trim = orig_aa ;
    
    if ( mode == M_SILMUT && orig_aa_trim.Trim().IsEmpty() )
    	{
		status->SetLabel ( txt("t_no_reading_frame") ) ;
		status->Show ( TRUE ) ;
		SetCursor ( *wxSTANDARD_CURSOR ) ;
		return ;
		}
	else status->Hide() ;
    
    int limit = lim_xhg->GetValue() ; // Maximum number of exchanges
    int limit_cuts = lim_max->GetValue() ; // Maximum number of cuts
    vs.clear() ;
    int a , b , c ;
    int match , mismatch ;
    
    // List of restriction enzymes to check
    wxArrayTRestrictionEnzyme re ;
    wxString group = egr->GetStringSelection() ;
    if ( group == txt("Current") ) re = v->re ;
    else
        {
        wxArrayString z ;
        myapp()->frame->LS->getEnzymesInGroup ( group , z ) ;
        for ( a = 0 ; a < z.GetCount() ; a++ )
        	re.Add ( myapp()->frame->LS->getRestrictionEnzyme ( z[a] ) ) ;
        }
    
    wxString vseq = v->getSequence() ; // Marked sequence, uppercase
    wxString vseq_l = vseq.Lower() ; // Marked sequence, lowercase
    
    
    
    // Check each restriction enzyme
    for ( a = 0 ; a < re.GetCount() ; a++ )
		{
		TRestrictionEnzyme *e = re[a] ;
		wxString s = e->getSequence() ;
		int f , t ;
		f = from - s.length() + 1 ;
		t = to - 1 ;
		if ( f < 0 ) f = 0 ;
		while ( t + s.length() >= vseq.length() ) t-- ;
		for ( b = f ; b <= t ; b++ )
			{
			match = mismatch = 0 ;
			wxString x ;
			for ( c = 0 ; c < s.length() && mismatch <= limit ; c++ )
				{
				if ( v->basematch ( vseq.GetChar(b+c) , s.GetChar(c) ) )
					{
					match++ ;
					x += vseq_l.GetChar(b+c) ;
					}
				else if ( b+c < from-1 || b+c >= to )
					{
					mismatch = limit + 1 ; // Needs mutation outside specified region
					}
				else
					{
					mismatch++ ;
					x += s.GetChar(c) ;
					}
				}
			
			// Does this preserve the amino acid sequence?
			wxString new_dna ;
			bool useit = false ;
			if ( mismatch <= limit )
				{
				new_dna = vseq ;//v->getSequence() ;
				for ( c = 0 ; c < new_dna.length() ; c++ )
					{
					if ( c >= b && c < b + s.length() && 
						c-b >= 0 && c-b <= x.length() &&
						x.GetChar(c-b) >= 'A' &&
						x.GetChar(c-b) <= 'Z' ) 
						new_dna.SetChar ( c ,  x.GetChar(c-b) ) ;
					}
				wxString new_aa = getAAresult ( new_dna ) ;
				if ( new_aa == orig_aa ) useit = true ;
				}

			
			if ( acr && mismatch != 0 ) useit = false ; // Shorcut if used as "first stage"
			
			if ( !useit ) continue ; // Don't use it!

			// Add it to the list
			wxString y ;
			for ( c = from-1 ; c < to ; c++ )
				{
				if ( c >= b && c < b + s.length() ) y += x.GetChar(c-b) ;
				else y += vseq_l.GetChar(c) ; 
				}
			TSilmutItem si ;
			si.e = e ;
			si.changes = mismatch ;
			si.mut = y ;
			wxString old_dna = v->getSequence() ;
			v->setSequence ( new_dna ) ;
			int ndl = new_dna.length() ;
			vector <TRestrictionCut> vc ;
			v->getCuts ( e , vc , true ) ;
			
			// Calculating the resulting fragments
			wxArrayInt fragments ;
			fragments.Alloc ( vc.size() + 5 ) ;
			int now , last = -1 ;
			for ( c = 0 ; c < vc.size() ; c++ )
				{
				now = vc[c].getPos() ;
				if ( now > ndl ) now -= ndl ;
				if ( now == last ) continue ;
				last = now ;
				fragments.Add ( now ) ;
				}
			fragments.Sort(cmpint) ;
			now = ndl-1 ;
			if ( last != now ) fragments.Add ( now ) ;
			
			for ( c = fragments.GetCount()-1 ; c > 0 ; c-- ) fragments[c] -= fragments[c-1] ;
			fragments[0]++ ;

			if ( v->isCircular() )
				{
				fragments[0] += fragments.Last() ;
				fragments.RemoveAt ( fragments.GetCount()-1 ) ;
				}

			fragments.Sort(cmpint) ; // Sort fragments by size
			
			int cnt , sum = 0 ;
			for ( cnt = 0 ; cnt < fragments.size() ; cnt++ ) sum += fragments[cnt] ;
			fragments.Add ( sum ) ;
			
			si.fragments = fragments ;
			
			si.cuts = vc.size() ;
			v->setSequence ( old_dna ) ;
			if ( vc.size() <= limit_cuts ) vs.push_back ( si ) ;

			}
		}
    
    if ( acr ) calc_acr () ;
    
    SetCursor ( *wxSTANDARD_CURSOR ) ;
    }

void TSilmutDialog::calc_acr ()
    {
    wxString orig_aa = getAAresult ( v->getSequence() ) ;
//    int limit = lim_xhg->GetValue() ; // Maximum number of exchanges
    int limit_cuts = lim_max->GetValue() ; // Maximum number of cuts
    int a , b , c ;
//    int match , mismatch ;

    
    // List of restriction enzymes to check
	// Only those which already exist from previous run ("first stage")
    wxArrayTRestrictionEnzyme re ;
	for ( a = 0 ; a < vs.size() ; a++ ) re.Add ( vs[a].e ) ;
    vs.clear() ;
    
    wxString vseq = v->getSequence() ; // Marked sequence, uppercase
    wxString vseq_l = vseq ; // Marked sequence, lowercase
    for ( a = 0 ; a < vseq.length() ; a++ )
        {
        if ( vseq.GetChar(a) >= 'A' && vseq.GetChar(a) <= 'Z' )
           vseq_l.SetChar ( a , vseq.GetChar(a) - 'A' + 'a' ) ;
        }
    
    wxString bases = _T("ACTG") ;
    
    // Check each restriction enzyme
    for ( a = 0 ; a < re.GetCount() ; a++ )
        {
        TRestrictionEnzyme *e = re[a] ;
		vector <TRestrictionCut> vc_base ;
		v->getCuts ( e , vc_base ) ;
		
		// Sanity checks
		if ( vc_base.size() == 0 ) continue ;
		if ( vc_base.size() > limit_cuts ) continue ;

        for ( b = from-1 ; b <= to ; b++ )
           {
			for ( int base = 0 ; base < 4 ; base++ ) 
				{
				wxString new_dna = v->getSequence() ;
				new_dna.SetChar ( b , bases.GetChar ( base ) ) ;
				wxString new_aa = getAAresult ( new_dna ) ;
				if ( new_aa != orig_aa ) continue ;
				
				// This is a silent mutation
				vector <TRestrictionCut> vc_new ;
				v->setSequence ( new_dna ) ;
				v->getCuts ( e , vc_new ) ;
				v->setSequence ( vseq ) ;
				
				// Did this reduce the number of cuts?
				if ( vc_base.size() <= vc_new.size() ) continue ;
				
				wxString y ;
				for ( c = from-1 ; c < to ; c++ )
					{
					if ( b == c ) y += bases.GetChar ( base ) ; 
					else y += vseq_l.GetChar(c) ; 
					}

				TSilmutItem si ;
				si.e = e ;
				si.changes = 1 ;
				si.mut = y ;

				// Calculating the resulting fragments
				si.fragments.Alloc ( vc_new.size() + 5 ) ;
				for ( c = 0 ; c < vc_new.size() ; c++ ) si.fragments.Add ( vc_new[c].getCut() ) ;
				si.fragments.Add ( v->getSequenceLength()-1 ) ;
				for ( c = si.fragments.GetCount()-1 ; c > 0 ; c-- )
				si.fragments[c] -= si.fragments[c-1] ;
				si.fragments[0]++ ;
				if ( v->isCircular() )
					{
					si.fragments[0] += si.fragments.Last() ;
					si.fragments.RemoveAt ( si.fragments.GetCount()-1 ) ;
					}
				si.fragments.Sort(cmpint) ;
				
				si.cuts = vc_new.size() ;
				vs.push_back ( si ) ;
				}	
			}
        }
	}

wxString TSilmutDialog::getAAresult ( wxString dna )
    {
    if ( !pd )
        {
        wxString s = dna ;
        for ( int a = 0 ; a < s.length() ; a++ ) s.SetChar ( a , ' ' ) ;
        return s ;
        }
    TVector v2 ;
    v2.setFromVector ( *v ) ;
    v2.setSequence ( dna ) ;
    SeqAA *a3 ;
    a3 = new SeqAA ( pd->sc ) ;
    a3->mode = pd->aa_state ;
    a3->disp = pd->aa_disp ;
    a3->unknownAA = ' ' ;
    a3->initFromTVector ( &v2 ) ;
    a3->showNumbers = false ;
    wxString ret = a3->s ;
    delete a3 ;
    return ret ;
    }
    
void TSilmutDialog::showit ()
    {
    int a , b ;
    lb->Clear() ;
    wxArrayString list ;
    for ( a = 0 ; a < vs.size() ; a++ )
        {
        vector <TRestrictionCut> vc ;
        wxString e_name = vs[a].e->getName() ;
        while ( e_name.length() < 8 ) e_name += ' ' ;
        v->getCuts ( vs[a].e , vc ) ;
        int cuts_before = vc.size() ;

        wxString fragments ;
        for ( b = 0 ; b < vs[a].fragments.GetCount() ; b++ )
           {
           if ( b > 0 ) fragments += _T(", ") ;
           fragments += wxString::Format ( _T("%d") , vs[a].fragments[b] ) ;
           }
        
        wxString s ;
        if ( mode == M_SILMUT )
           {
           s = wxString::Format ( _T("%2d %s %s (%2d=>%2d) [%s]") ,
                        vs[a].changes , 
                        e_name.c_str() ,
                        vs[a].mut.c_str() ,
                        cuts_before ,
                        vs[a].cuts ,
                        fragments.c_str() ) ;
           }
        else if ( mode == M_WHATCUTS )
           {
           s = wxString::Format ( txt("t_whatcuts_format") , 
                        e_name.c_str() ,
                        vs[a].cuts ,
                        fragments.c_str() ) ;
           }
           
        lb->Append ( s ) ;
        list.Add ( s ) ;
        }

    lb_retro.Clear() ;
    for ( a = 0 ; a < list.GetCount() ; a++ )
        {
        lb_retro.Add ( lb->FindString ( list[a] ) ) ;
        }
    }