-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathTree.cs
51 lines (45 loc) · 1.32 KB
/
Tree.cs
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
using Genometric.GeUtilities.IGenomics;
using System.Collections.Generic;
namespace Genometric.MSPC.Core.IntervalTree
{
internal class Tree<I>
where I : IPeak
{
private Node<I, NodeData<I>> _head;
private readonly List<NodeData<I>> _intervalList;
private bool _inSync;
public Tree()
{
_head = new Node<I, NodeData<I>>();
_intervalList = new List<NodeData<I>>();
_inSync = true;
}
public void Add(I interval, uint sampleID)
{
_intervalList.Add(new NodeData<I>(interval, sampleID));
_inSync = false;
}
public List<NodeData<I>> GetIntervals(I peak, uint skipID)
{
return _head.Query(new NodeData<I>(peak, 0), skipID);
}
public void BuildAndFinalize()
{
if (!_inSync)
{
_head = new Node<I, NodeData<I>>(_intervalList);
/// If it is intended to only build this tree
/// without finalizing it, then remove the
/// following line.
_intervalList.Clear();
_inSync = true;
}
}
public enum StubMode
{
Contains,
ContainsStart,
ContainsStartThenEnd
}
}
}