-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodhmm_counts.go
170 lines (146 loc) · 4.5 KB
/
modhmm_counts.go
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
/* Copyright (C) 2018 Philipp Benner
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
/* -------------------------------------------------------------------------- */
//import "fmt"
import "io"
import "log"
import "math"
import "path"
import "sort"
import . "github.com/pbenner/ngstat/config"
import . "github.com/pbenner/gonetics"
import . "github.com/pbenner/autodiff"
import . "github.com/pbenner/modhmm/config"
/* -------------------------------------------------------------------------- */
func ImportCounts(config ConfigModHmm, filename string) Counts {
counts := Counts{}
printStderr(config, 1, "Importing reference counts from `%s'... ", filename)
if err := counts.ImportFile(filename); err != nil {
printStderr(config, 1, "failed\n")
// remove directory from filename
_, filename = path.Split(filename)
filename = path.Join(config.ModelFallbackPath(), filename)
printStderr(config, 1, "Importing counts from `%s' fallback model... ", config.ModelFallback)
if err := ImportDefaultFile(config, &counts, filename); err != nil {
printStderr(config, 1, "failed\n")
log.Fatal(err)
}
printStderr(config, 1, "done\n")
} else {
printStderr(config, 1, "done\n")
}
return counts
}
/* -------------------------------------------------------------------------- */
type Counts struct {
X []float64
Y []int
}
/* -------------------------------------------------------------------------- */
func (obj Counts) Len() int {
return len(obj.X)
}
func (obj Counts) Less(i, j int) bool {
return obj.X[i] < obj.X[j]
}
func (obj Counts) Swap(i, j int) {
obj.X[i], obj.X[j] = obj.X[j], obj.X[i]
obj.Y[i], obj.Y[j] = obj.Y[j], obj.Y[i]
}
/* -------------------------------------------------------------------------- */
func (obj Counts) Quantile(r float64) float64 {
n := 0
s := 0.0
for i, _ := range obj.X {
n += obj.Y[i]
}
for i, _ := range obj.X {
if s >= r {
return obj.X[i]
}
s += float64(obj.Y[i])/float64(n)
}
return obj.X[len(obj.X)-1]
}
func (obj Counts) ThresholdedMean(t float64) float64 {
n := 0
r := 0.0
for i, _ := range obj.X {
if obj.X[i] > t {
n += obj.Y[i]
}
}
for i, _ := range obj.X {
if obj.X[i] > t {
r += float64(obj.Y[i])/float64(n)*obj.X[i]
}
}
return r
}
/* -------------------------------------------------------------------------- */
func (config *Counts) Import(reader io.Reader, args... interface{}) error {
return JsonImport(reader, config)
}
func (config *Counts) Export(writer io.Writer) error {
return JsonExport(writer, config)
}
func (config *Counts) ImportFile(filename string) error {
if err := ImportFile(config, filename, Float64Type); err != nil {
return err
}
return nil
}
func (config *Counts) ExportFile(filename string) error {
if err := ExportFile(config, filename); err != nil {
return err
}
return nil
}
/* -------------------------------------------------------------------------- */
func compute_counts(config ConfigModHmm, track Track) Counts {
config.BinSummaryStatistics = "discrete mean"
m := make(map[float64]int)
if err := (GenericMutableTrack{}).Map(track, func(seqname string, position int, value float64) float64 {
if !math.IsNaN(value) {
m[value] += 1
}
return 0.0
}); err != nil {
log.Fatal(err)
}
i := 0
c := Counts{}
c.X = make([]float64, len(m))
c.Y = make([]int, len(m))
for k, v := range m {
c.X[i] = k
c.Y[i] = v
i++
}
sort.Sort(c)
return c
}
/* -------------------------------------------------------------------------- */
func modhmm_compute_counts(config ConfigModHmm, track Track, filenameOut string) {
c := compute_counts(config, track)
printStderr(config, 1, "Exporting counts to `%s'... ", filenameOut)
if err := c.ExportFile(filenameOut); err != nil {
printStderr(config, 1, "failed\n")
log.Fatal(err)
}
printStderr(config, 1, "done\n")
}