File: graph_algorithm_refine_annotation.h

package info (click to toggle)
openms 2.6.0%2Bcleaned1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 783,168 kB
  • sloc: cpp: 526,888; xml: 142,287; ansic: 54,252; python: 11,640; php: 2,454; sh: 1,137; ruby: 529; yacc: 403; perl: 85; lex: 74; makefile: 61
file content (413 lines) | stat: -rw-r--r-- 13,383 bytes parent folder | download | duplicates (12)
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
// ==========================================================================
//                 SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2013, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above copyright
//       notice, this list of conditions and the following disclaimer in the
//       documentation and/or other materials provided with the distribution.
//     * Neither the name of Knut Reinert or the FU Berlin nor the names of
//       its contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Tobias Rausch <rausch@embl.de>
// Author: Anne-Katrin Emde <anne-katrin.emde@fu-berlin.de>
// ==========================================================================

#ifndef SEQAN_CORE_INCLUDE_SEQAN_GRAPH_ALGORITHM_REFINE_ANNOTATION_H_
#define SEQAN_CORE_INCLUDE_SEQAN_GRAPH_ALGORITHM_REFINE_ANNOTATION_H_

//SEQAN_NO_DDDOC: do not generate documentation for this file

namespace seqan {


template<typename TSequence, typename TValue, typename TSpec = Simple>
class Annotation;



/**
.Class.Annotation:
..cat:Sequences
..summary:Class for annotating sequences. 
..signature:Annotation<TSequence, TLabel, TSpec>  
..param.TSequence:The sequence that annotation is available for.
..param.TLabel:The label type (e.g. int or String<char>)
..param.TSpec:The specializing type.
...default:Simple
..include:graph_align.h
*/
template<typename TSequence,typename TValue>
class Annotation<TSequence,TValue,Simple>{

public:
	typedef typename Id<TSequence>::Type TId_;
	typedef typename Position<TSequence>::Type TPos_;
	typedef typename Size<TSequence>::Type TSize_;

	TId_ data_seq_id;
	TPos_ data_begin;
	TSize_ data_length;
	//String<char> data_label;
	TValue data_label;

	Annotation()
	{
	}

    /**
.Memfunc.Annotation#Annotation:
..class:Class.Annotation
..summary:Constructor.
..signature:Annotation(seqId, begin, len, label)
..param.seqId:The sequence ID of the annotated sequence of type Id<TSequence>::Type.
..param.begin:The begin position of the annotated interval of type Position<TSequence>::Type.
..param.len:The length of the annotated interval of type Size<TSequence>::Type.
..param.cargo:The annotation label/identifier of type TValue.
     */
	
	Annotation(TId_ seqId, TPos_ begin, TSize_ len, TValue label) :
			data_seq_id(seqId),
			data_begin(begin), 
			data_length(len),
			data_label(label)
	{
	}

	~Annotation()
	{
	}

};



template<typename TSequence,typename TValue,typename TSpec>	
typename Id<TSequence>::Type&
sequenceId(Annotation<TSequence,TValue,TSpec> & me)
{
SEQAN_CHECKPOINT
	return me.data_seq_id;
}

template<typename TSequence,typename TValue,typename TSpec>	
typename Position<TSequence>::Type&
fragmentBegin(Annotation<TSequence,TValue,TSpec> & me)
{
SEQAN_CHECKPOINT
	return me.data_begin;
}

template<typename TSequence,typename TValue,typename TSpec>	
typename Size<TSequence>::Type&
fragmentLength(Annotation<TSequence,TValue,TSpec> & me)
{
SEQAN_CHECKPOINT
	return me.data_length;
}

template<typename TSequence,typename TValue,typename TSpec>	
TValue
label(Annotation<TSequence,TValue,TSpec> & me)
{
SEQAN_CHECKPOINT
	return me.data_label;
}


template<typename TSequence,typename TValue,typename TSpec>	
struct Value<Annotation<TSequence,TValue,TSpec> >
{
	typedef TValue Type;
};


// default: no annotation given, do nothing
template<typename TValue, typename TAliString, typename TGraph, typename TPropertyMap, typename TStringSet, typename TMap, typename TTagSpec>
inline void
_addAnnotationCuts(String<std::set<TValue> > &,
				   TAliString &, 
				   String<TGraph> &, 
				   String<TPropertyMap> &, 
				   TStringSet &,
				   TMap &,
				   bool,
				   TValue,
				   Tag<TTagSpec>)
{
SEQAN_CHECKPOINT
	return;
}




//refine positions where annotation changes (borders of annotated stretches)
template<typename TValue, typename TAliString, typename TGraph, typename TPropertyMap, typename TStringSet, typename TMap, typename TAnnoString, typename TTagSpec>
inline void
_addAnnotationCuts(String<std::set<TValue> > & all_nodes,
				   TAliString & alis, 
				   String<TGraph> & gs, 
				   String<TPropertyMap> & pms, 
				   TStringSet & seq,
				   TMap & seq_map,
				   TAnnoString & annotation,
				   TValue min_fragment_len,
				   Tag<TTagSpec> tag)
{
SEQAN_CHECKPOINT

	//typedef typename Value<TAnnoString>::Type TAnnotation;
	typedef typename Iterator<TAnnoString,Standard>::Type TAnnoIter;
	typedef typename std::set<TValue>::iterator TSetIterator;
	//call function _refine for each position that annotation is given for (the borders of annotated stretches)
	TAnnoIter anno_it = begin(annotation,Standard());
	TAnnoIter anno_end = end(annotation,Standard());
	//for each annotated stretch
	while(anno_it != anno_end)
	{
		
		TValue seq_i_id = sequenceId(*anno_it);
		TValue begin_i = fragmentBegin(*anno_it);
		TValue end_i = begin_i + fragmentLength(*anno_it);
		TValue seq_i_pos = idToPosition(seq,seq_i_id);
		
		//refine begin
		TSetIterator iter = all_nodes[seq_i_pos].find(begin_i);		
		if(_cutIsValid(all_nodes,seq_i_pos,begin_i,iter,min_fragment_len,tag))
		{
			all_nodes[seq_i_pos].insert(begin_i);
			_refine(begin_i, seq_i_id, seq, seq_map, alis, gs,pms,all_nodes,min_fragment_len,tag);//TStop());
		}
		//and end position
		iter = all_nodes[seq_i_pos].find(end_i);		
		if(_cutIsValid(all_nodes,seq_i_pos,end_i,iter,min_fragment_len,tag))
		{
			all_nodes[seq_i_pos].insert(end_i);
			_refine(end_i, seq_i_id, seq, seq_map, alis, gs,pms,all_nodes,min_fragment_len,tag);//TStop());
		}
		++anno_it;
	}
	      	
}
	      

// add annotation labels to nodes, as given in annotation, store as node properties in pm
template<typename TPropertyMap, typename TStringSet, typename TMap, typename TAnnoString, typename TAliGraph,typename TTagSpec>
inline void
_addNodeAnnotation(TStringSet &,
				   TMap &,
				   TAnnoString & annotation,
				   TPropertyMap & pm,
				   TAliGraph & ali_g,
				   Tag<TTagSpec>)
{
SEQAN_CHECKPOINT

	resizeVertexMap(ali_g, pm);

	typedef typename Value<TAnnoString>::Type TAnnotation;
	typedef typename Id<TAnnotation>::Type TId;
	typedef typename Position<TAnnotation>::Type TPos;
	typedef typename Value<TAnnotation>::Type TLabel;
	typedef typename VertexDescriptor<TAliGraph>::Type TVertexDescriptor;
	
	typedef typename Iterator<TAnnoString,Standard>::Type TAnnoIter;
	TAnnoIter anno_it = begin(annotation,Standard());
	TAnnoIter anno_end = end(annotation,Standard());

	//for each annotated stretch
	while(anno_it != anno_end)
	{
		TLabel label_ = label(*anno_it);
		TId seq_id = sequenceId(*anno_it);
		TPos act_pos = fragmentBegin(*anno_it);
		TPos end_pos = act_pos + fragmentLength(*anno_it);

		//for each interval that lies within the current segment/fragement/alignment
		while(act_pos < end_pos)
		{
			//get the node represents the current interval (begin_pos until next_cut_pos or end_pos)
			TVertexDescriptor act_knot = findVertex(ali_g,seq_id,act_pos);

			String<TLabel> property = getProperty(pm, act_knot);
			appendValue(property,label_);
			assignProperty(pm, act_knot, property);
			SEQAN_ASSERT(fragmentBegin(ali_g,act_knot)==act_pos);

			//prepare for next interval
			act_pos += fragmentLength(ali_g,act_knot);
		}
		++anno_it;

	}



}

// edgescore = alignmentscore * annoscore
// compute annotation score: 2 if vd1 and vd2 share same annotation
// 1 if they are not the same (--> edgescore = alignmentscore)
template<typename TAliGraph,typename TScore, typename TPropertyMap>
typename Value<TScore>::Type 
_getRefinedAnnoScore(TAliGraph &,
			 TPropertyMap & pm,
			 typename VertexDescriptor<TAliGraph>::Type vd1,
			 typename VertexDescriptor<TAliGraph>::Type vd2,
			 TScore &)
{
SEQAN_CHECKPOINT
	typedef typename Value<TPropertyMap>::Type TProperty;
	//typedef typename Value<TProperty>::Type TChar;
	typedef typename Iterator<TProperty,Standard>::Type TIterator;

	TIterator prop1_it = begin(property(pm,vd1),Standard());
	TIterator prop1_end = end(property(pm,vd1),Standard());
	while(prop1_it != prop1_end)
	{
		TIterator prop2_it = begin(property(pm,vd2),Standard());
		TIterator prop2_end = end(property(pm,vd2),Standard());
		while(prop2_it != prop2_end)
		{
			if(*prop2_it==*prop1_it)
				return 2;/*scoreMatch(score_type);*/
			++prop2_it;
		}
		++prop1_it;
	}
	return 1;

}

// default score 1 --> edgescore = alignmentscore
template<typename TAliGraph,typename TScore>
typename Value<TScore>::Type 
_getRefinedAnnoScore(TAliGraph &,
			 bool,
			 typename VertexDescriptor<TAliGraph>::Type,
			 typename VertexDescriptor<TAliGraph>::Type,
			 TScore &)
{
SEQAN_CHECKPOINT
	return (typename Value<TScore>::Type) 1;
}




/**
.Function.matchRefinement:
..class:Spec.Alignment Graph
..signature:matchRefinement(matches,annotation,stringSet,scoringScheme,refinedGraph)
..param.annotation:Sequence annotation data. 
...remarks: Additional semgent match subdivisions will be made at sequence positions at which the annotation label changes.
...type:Class.Annotation
..include:seqan/graph_align.h
*/
//annotation given,exact refinement, score type given
template<typename TAlignmentString, typename TScoreValue,typename TScoreSpec,typename TAnnoString,typename TOutGraph, typename TSequence, typename TSetSpec>
void
matchRefinement(TAlignmentString & alis,
				TAnnoString & anno,
				StringSet<TSequence, TSetSpec> & seq, 
				Score<TScoreValue,TScoreSpec> & score_type,
				TOutGraph & ali_graph)
{
SEQAN_CHECKPOINT
	//min_fragment_len = 1   ==> Exact cutting
	matchRefinement(alis,seq,score_type,ali_graph,1,anno,ExactRefinement());
}


/**
.Function.matchRefinement:
..signature:matchRefinement(matches,annotation,stringSet,scoringScheme,refinedGraph,minFragmentLen)
..include:seqan/graph_align.h
*/
//annotation given,score type given, min fragment length given, if > 1 ==> inexact refinement
template<typename TAlignmentString, typename TScoreValue,typename TScoreSpec,typename TAnnoString, typename TOutGraph, typename TSequence, typename TSetSpec>
void
matchRefinement(TAlignmentString & alis,
				TAnnoString & anno,
				StringSet<TSequence, TSetSpec> & seq, 
				Score<TScoreValue,TScoreSpec> & score_type,
				TOutGraph & ali_graph,
				unsigned int min_frag_len)
{
SEQAN_CHECKPOINT
	if(min_frag_len > 1)
        matchRefinement(alis,seq,score_type,ali_graph,min_frag_len,anno,InexactRefinement());
	else
        matchRefinement(alis,seq,score_type,ali_graph,min_frag_len,anno,ExactRefinement());
}



/**
.Function.matchRefinement:
..signature:matchRefinement(matches,annotation,stringSet,refinedGraph,minFragmentLen)
..include:seqan/graph_align.h
*/
//annotation given,score type not given, min fragment length given, if > 1 ==> inexact refinement
template<typename TAlignmentString, typename TOutGraph, typename TAnnoString, typename TSequence, typename TSetSpec>
void
matchRefinement(TAlignmentString & alis,
				TAnnoString & anno,
				StringSet<TSequence, TSetSpec> & seq, 
				TOutGraph & ali_graph,
				unsigned int min_frag_len)
{
SEQAN_CHECKPOINT
//	Score<int,FakeScore > fake_score;
	typename Cargo<TOutGraph>::Type fake_score = 1;
	if(min_frag_len > 1)
        matchRefinement(alis,seq,fake_score,ali_graph,min_frag_len,anno,InexactRefinement());
	else
        matchRefinement(alis,seq,fake_score,ali_graph,min_frag_len,anno,ExactRefinement());
}
	


/**
.Function.matchRefinement:
..signature:matchRefinement(matches,annotation,stringSet,refinedGraph)
..include:seqan/graph_align.h
*/
//annotation given,exact refinement, score type not given
template<typename TAlignmentString,typename TAnnoString, typename TOutGraph, typename TSequence, typename TSetSpec>
void
matchRefinement(TAlignmentString & alis,
				TAnnoString & anno,
				StringSet<TSequence, TSetSpec> & seq, 
				TOutGraph & ali_graph)
{
SEQAN_CHECKPOINT
//	Score<int,FakeScore > fake_score;
	typename Cargo<TOutGraph>::Type fake_score = 1;
	matchRefinement(alis,seq,fake_score,ali_graph,1,anno,ExactRefinement());
}

}  // namespace seqan

#endif  // #ifndef SEQAN_CORE_INCLUDE_SEQAN_GRAPH_ALGORITHM_REFINE_ANNOTATION_H_