File: TRestrictionIdentifier.cpp

package info (click to toggle)
gentle 1.9%2Bcvs20100605%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 12,224 kB
  • ctags: 6,214
  • sloc: cpp: 41,569; ansic: 3,978; sh: 1,420; makefile: 243
file content (349 lines) | stat: -rw-r--r-- 10,840 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
#include "TVirtualGel.h"

BEGIN_EVENT_TABLE(TRestrictionIdentifier, TVirtualGel)
    EVT_CHECKLISTBOX(RI_DNA_LIST,TRestrictionIdentifier::OnDNAListChange)
    EVT_CHOICE(RI_MIN_PERCENT,TRestrictionIdentifier::OnDNAListChange)
    EVT_CHOICE(RI_MIN_BP,TRestrictionIdentifier::OnDNAListChange)
    EVT_CHOICE(RI_GROUP,TRestrictionIdentifier::OnDNAListChange)
    EVT_LISTBOX(RI_ENZYMES_LIST,TRestrictionIdentifier::OnEnzymeListChange)

    // Dummies
    EVT_MENU(MDI_TOGGLE_FEATURES,ChildBase::OnDummy)
    EVT_MENU(MDI_TOGGLE_RESTRICTION,ChildBase::OnDummy)
    EVT_MENU(MDI_TOGGLE_IDNA,ChildBase::OnDummy)
    EVT_MENU(MDI_VIEW_MODE,ChildBase::OnDummy)
    EVT_MENU(MDI_ORFS,ChildBase::OnDummy)
    EVT_MENU(MDI_CIRCULAR_LINEAR,ChildBase::OnDummy)
    EVT_MENU(MDI_UNDO,ChildBase::OnDummy)
    EVT_MENU(MDI_CUT,ChildBase::OnDummy)
    EVT_MENU(MDI_COPY,ChildBase::OnDummy)
    EVT_MENU(MDI_PASTE,ChildBase::OnDummy)
    EVT_MENU(MDI_EDIT_MODE,ChildBase::OnDummy)
    EVT_MENU(MDI_EXPORT,ChildBase::OnDummy)
    EVT_MENU(MDI_MARK_ALL,ChildBase::OnDummy)
    EVT_MENU(MDI_FILE_SAVE,ChildBase::OnDummy)
    EVT_MENU(MDI_FIND,ChildBase::OnDummy)
    EVT_MENU(AA_NONE,TABIviewer::OnDummy)
    EVT_MENU(AA_KNOWN, TABIviewer::OnDummy)
    EVT_MENU(AA_ALL, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE, TABIviewer::OnDummy)
    EVT_MENU(AA_ONE, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE_1, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE_2, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE_3, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE_M1, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE_M2, TABIviewer::OnDummy)
    EVT_MENU(AA_THREE_M3, TABIviewer::OnDummy)
END_EVENT_TABLE()


TRestrictionIdentifier::TRestrictionIdentifier(wxWindow *parent, const wxString& title)
    : TVirtualGel ( parent , title )
{
    def = _T("RESTRICTION_IDENTIFIER") ;
    type = _T("DNA") ;
    running = false ;
}

wxString TRestrictionIdentifier::getName ()
    {
    return _T("Restriction Identifier") ;
    }
    
void TRestrictionIdentifier::initme ()
{
    TVirtualGel::initme () ;
    
    wxBoxSizer *main = new wxBoxSizer ( wxHORIZONTAL ) ;
    wxBoxSizer *h1 = new wxBoxSizer ( wxHORIZONTAL ) ;
    wxBoxSizer *h2 = new wxBoxSizer ( wxHORIZONTAL ) ;
//    wxBoxSizer *h3 = new wxBoxSizer ( wxHORIZONTAL ) ;
    wxBoxSizer *v = new wxBoxSizer ( wxVERTICAL ) ;
    
    dna_list = new wxCheckListBox ( this , RI_DNA_LIST ) ;
    bp_list = new wxChoice ( this , RI_MIN_BP ) ;
    percent_list = new wxChoice ( this , RI_MIN_PERCENT ) ;
    group_list = new wxChoice ( this , RI_GROUP ) ;
    enzymes_list = new wxListBox ( this , RI_ENZYMES_LIST ) ;

    h1->Add ( new wxStaticText(this,-1,txt("t_minumum")+_T(" ")) , 0 , wxEXPAND|wxALL , 2 ) ;
    h1->Add ( bp_list , 0 , wxEXPAND|wxALL , 2 ) ;
    h1->Add ( new wxStaticText(this,-1,txt("t_bp")) , 0 , wxEXPAND|wxALL , 2 ) ;

    h2->Add ( new wxStaticText(this,-1,txt("t_minumum")+_T(" ")) , 0 , wxEXPAND|wxALL , 2 ) ;
    h2->Add ( percent_list , 0 , wxEXPAND|wxALL , 2 ) ;
    h2->Add ( new wxStaticText(this,-1,_T("%")) , 0 , wxEXPAND|wxALL , 2 ) ;
    
//    h3->Add ( new wxStaticText(this,-1,txt("enzyme_groups")+_T(" ")) , 0 , wxEXPAND|wxALL , 2 ) ;
//    h3->Add ( group_list , 0 , wxEXPAND|wxALL , 2 ) ;
    
    v->Add ( new wxStaticText(this,-1,txt("band_difference")) , 0 , wxEXPAND|wxALL , 2 ) ;
    v->Add ( h1 , 0 , wxEXPAND|wxALL , 2 ) ;
    v->Add ( h2 , 0 , wxEXPAND|wxALL , 2 ) ;
//    v->Add ( h3 , 0 , wxEXPAND|wxALL , 5 ) ;

    v->Add ( new wxStaticText(this,-1,txt("enzyme_groups")) , 0 , wxEXPAND|wxALL , 2 ) ;
    v->Add ( group_list , 0 , wxEXPAND|wxALL , 2 ) ;

    v->Add ( enzymes_list , 2 , wxEXPAND|wxALL , 2 ) ;
    v->Add ( dna_list , 1 , wxEXPAND|wxALL , 2 ) ;

    main->Add ( v , 0 , wxEXPAND , 2 ) ;
    main->Add ( right , 1 , wxEXPAND , 2 ) ;
    
	wxBoxSizer *vs = new wxBoxSizer ( wxVERTICAL ) ;
    vs->Add ( toolbar , 0 , wxEXPAND , 2 ) ;
	vs->Add ( main , 1 , wxEXPAND , 2 ) ;
    
    
    int a ;
    
    // Init bp/% lists
    for ( a = 0 ; a < 51 ; a++ ) percent_list->Append ( wxString::Format ( _T("%2d") , a ) ) ;
    bp_list->Append ( _T("0") ) ;
    bp_list->Append ( _T("20") ) ;
    bp_list->Append ( _T("50") ) ;
    bp_list->Append ( _T("100") ) ;
    bp_list->Append ( _T("200") ) ;
    bp_list->Append ( _T("500") ) ;
    percent_list->SetSelection ( 10 ) ;
    bp_list->SetSelection ( 2 ) ;
    
    // Init enzyme groups list
    wxArrayString as ;
    myapp()->frame->LS->getEnzymeGroups ( as ) ;
    group_list->Append ( txt("All") ) ;
    for ( a = 0 ; a < as.GetCount() ; a++ )
    {
        group_list->Append ( as[a] ) ;
    }
    group_list->SetSelection ( 0 ) ;

    // Init dna list
    listDNA() ;

	this->SetSizer ( vs ) ;
	vs->Fit ( this ) ;    
	
//	for ( a = 0 ; a < dna_list->GetCount() ; a++ ) dna_list->Check ( a , true ) ;
    recalcEnzymes() ;
    running = true ;
}

void TRestrictionIdentifier::OnDNAListChange(wxCommandEvent &event)
{
    recalcEnzymes() ;
}

void TRestrictionIdentifier::OnEnzymeListChange(wxCommandEvent &event)
{
    while ( lanes.size() > 1 ) lanes.pop_back() ;
    
    int sel = enzymes_list->GetSelection() ;
    if ( sel != wxNOT_FOUND )
    {
        wxString en = enzymes_list->GetString ( sel ) ;
        int a ;
        for ( a = 0 ; a < dna_list->GetCount() ; a++ )
        {
            if ( !dna_list->IsChecked ( a ) ) continue ; // Not checked
            TVector *v = dna_items[a]->vec ;
            if ( !v ) continue ; // Paranoia
            addRestrictionLane ( en , v ) ;
        }
    }
    
    right->Refresh ( true ) ;
}

wxArrayInt TRestrictionIdentifier::getRestrictionFragments ( wxString en , TVector *v )
{
    wxArrayInt ret ;
    TRestrictionEnzyme *e = myapp()->frame->LS->getRestrictionEnzyme ( en );
    vector <TRestrictionCut> x ;
    v->getCuts ( e , x ) ;
    if ( x.size() == 0 ) return ret ; // Empty
    
    
    int a , last , len = v->getSequenceLength() ;
    if ( v->isCircular() )
    {
        last = x[x.size()-1].getPos() - len ;
    }
    else
    {
        last = 0 ;
        x.push_back ( TRestrictionCut ( len , e ) ) ;
    }

    for ( a = 0 ; a < x.size() ; a++ )
    {
        int diff = x[a].getPos() - last ;
        last = x[a].getPos() ;
        if ( diff == 0 ) continue ;
        if ( diff > len ) diff -= len ;
        ret.Add ( diff ) ;
    }

    return ret ;
}

void TRestrictionIdentifier::addRestrictionLane ( wxString en , TVector *v )
{
    wxArrayInt ai = getRestrictionFragments ( en , v ) ;
    TGelLane l ;
    if ( v->isLinear() ) l.add ( v->getSequenceLength() , 10 , wxString::Format ( txt("orig") , v->getSequenceLength() ) ) ;
    for ( int a = 0 ; a < ai.GetCount() ; a++ )
    {
        l.add ( ai[a] , 100 ) ;
    }
    l.name = v->getName() ;
    lanes.push_back ( l ) ;
}


void TRestrictionIdentifier::recalcEnzymes()
{
    
    int a ;
    wxArrayString enzyme_names ;
    myapp()->frame->LS->getEnzymesInGroup ( group_list->GetStringSelection() , enzyme_names ) ;
    enzyme_names.Sort() ;
    
    enzymes_list->Clear() ;
    for ( a = 0 ; a < enzyme_names.GetCount() ; a++ )
    {
        wxString en = enzyme_names[a] ;
        if ( !check4separation ( en ) ) continue ;
        enzymes_list->Append ( en ) ;
    }
    
    if ( enzymes_list->GetCount() > 0 ) enzymes_list->SetSelection ( 0 ) ;
    wxCommandEvent event ;
    OnEnzymeListChange(event) ;
}

void TRestrictionIdentifier::listDNA ()
{
    int a , b ;
    
    // Remember which ones were checked
    vector <MyChild*> was_checked ;
    for ( a = 0 ; a < dna_items.size() ; a++ )
    {
        if ( !dna_list->IsChecked ( a ) ) continue ;
        was_checked.push_back ( dna_items[a] ) ;
    }
    
    // Regenerate visual and pointer list
    dna_items.clear() ;
    dna_list->Clear() ;
	for ( a = 0 ; a < myapp()->frame->children.GetCount() ; a++ )
		{
 		if ( myapp()->frame->children[a]->def != _T("dna") ) continue ;
 		dna_items.push_back ( (MyChild*) myapp()->frame->children[a] ) ;
 		dna_list->Append ( myapp()->frame->children[a]->getName() ) ;
		}
	
	// Re-check previously checked ones
	for ( a = 0 ; a < was_checked.size() ; a++ )
	{
        for ( b = 0 ; b < dna_items.size() ; b++ )
        {
            if ( dna_items[b] != was_checked[a] ) continue ;
            dna_list->Check ( a ) ;
            break ;
        }
    }
}

bool TRestrictionIdentifier::check4separation ( wxString en )
{
    int a , b ;
    vector <wxArrayInt> vai ;
    for ( a = 0 ; a < dna_list->GetCount() ; a++ )
    {
        if ( !dna_list->IsChecked ( a ) ) continue ; // Not checked
        TVector *v = dna_items[a]->vec ;
        if ( !v ) continue ; // Paranoia
        wxArrayInt ai = getRestrictionFragments ( en , v ) ;
        for ( b = 0 ; b < vai.size() ; b++ )
        {
            if ( !arrays_are_separate ( vai[b] , ai ) ) return false ;
        }
        vai.push_back ( ai ) ;
    }
    return true ;
}

bool TRestrictionIdentifier::arrays_are_separate ( const wxArrayInt &a1 , const wxArrayInt &a2 )
{
    long bp , percent ;
    bp_list->GetStringSelection().ToLong ( &bp ) ;
    percent_list->GetStringSelection().ToLong ( &percent ) ;
    
    if ( arrays_differ ( a1 , a2 , bp , percent ) ) return true ;
    if ( arrays_differ ( a2 , a1 , bp , percent ) ) return true ;
    return false ;
}

bool TRestrictionIdentifier::arrays_differ ( const wxArrayInt &a1 , const wxArrayInt &a2 , int bp , int percent )
{
    int a , b ;
    for ( a = 0 ; a < a1.GetCount() ; a++ )
    {
        bool dupe = false ;
        int low = a1[a] - a1[a] * percent / 100 ;
        if ( low > a1[a] - bp ) low = a1[a] - bp ;

        int high = a1[a] + a1[a] * percent / 100 ;
        if ( high < a1[a] + bp ) high = a1[a] + bp ;

        for ( b = 0 ; b < a2.GetCount() ; b++ )
        {
            if ( a2[b] < low || a2[b] > high ) continue ;
            dupe = true ;
            break ;
        }
        
        if ( !dupe ) return true ;
    }
    return false ;
}


void TRestrictionIdentifier::otherChildrenChanged ()
{
    if ( !running ) return ;
    listDNA () ;
    recalcEnzymes() ;
}

//_____________________________________________________________________________________

/** \brief Handles the Restriction Identifier menu event
*/
void MyFrame::OnRestrictionIdentifier(wxCommandEvent& event)
    {
    TRestrictionIdentifier *subframe = new TRestrictionIdentifier ( getCommonParent() , txt("m_restriction_identifier") ) ;

    // Give it an icon
#ifdef __WXMSW__
    subframe->SetIcon(wxIcon(_T("chrt_icn")));
#elif __WXMAC__
#else
    subframe->SetIcon(wxIcon( mondrian_xpm ));
#endif

    subframe->initme () ;

    subframe->Show() ;
    subframe->Maximize() ;
    subframe->showName() ;

    mainTree->addChild ( subframe , TYPE_MISC ) ;
    setChild ( subframe ) ;
    activateChild ( children.GetCount()-1 ) ;

//    return subframe ;
    }