-
Notifications
You must be signed in to change notification settings - Fork 37
/
genome_interval.cpp
113 lines (102 loc) · 3.1 KB
/
genome_interval.cpp
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
/* The MIT License
Copyright (c) 2013 Adrian Tan <atks@umich.edu>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "genome_interval.h"
/**
* Constructs a Genome Interval.
*/
GenomeInterval::GenomeInterval(std::string& seq, int32_t start1, int32_t end1)
{
this->seq = seq;
this->start1 = start1;
this->end1 = end1;
};
/**
* Constructs a Genome Interval from a string representation.
*
* @interval string representation of an interval.
*
* e.g X:2000-4000 position 2000 to 4000 on chromosome X
* Y the entirety of chromosome Y
*/
GenomeInterval::GenomeInterval(std::string interval)
{
std::vector<std::string> v;
split(v, ":-", interval);
if (v.size()==1)
{
seq = v[0];
start1 = 1;
end1 = (1<<29) - 1;
}
else if (v.size()==3)
{
seq = v[0];
if (!str2int32(v[1], start1) || !str2int32(v[2], end1))
{
fprintf(stderr, "[%s:%d %s] Invalid genomic interval: %s\n", __FILE__,__LINE__,__FUNCTION__, interval.c_str());
exit(1);
}
}
else
{
fprintf(stderr, "[%s:%d %s] Invalid genomic interval: %s\n", __FILE__,__LINE__,__FUNCTION__, interval.c_str());
exit(1);
}
};
/**
* Converts genome interval into the entire chromosome.
*/
void GenomeInterval::chromosomify()
{
start1 = 1;
end1 = (1<<29) - 1;
}
/**
* Returns a string representation of this Genome Interval.
*/
std::string GenomeInterval::to_string()
{
kstring_t s = {0,0,0};
kputs(seq.c_str(), &s);
if (start1!=1 || end1!=((1<<29)-1))
{
kputc(':', &s);
kputw(start1, &s);
kputc('-', &s);
kputw(end1, &s);
}
std::string interval(s.s);
if (s.m) free(s.s);
return interval;
};
/**
* Returns a string representation of this Genome Interval.
*/
void GenomeInterval::to_string(kstring_t *interval)
{
interval->l = 0;
kputs(seq.c_str(), interval);
if (start1!=1 || end1!=((1<<29)-1))
{
kputc(':', interval);
kputw(start1, interval);
kputc('-', interval);
kputw(end1, interval);
}
};