-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
66 lines (60 loc) · 1.72 KB
/
main_test.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
package main
import (
. "./src"
"testing"
)
func Benchmark3A(b *testing.B) {
//ary, ary2 := readfasta("sequences.txt")
ary := readfile("NM_000690.fasta")
ary2 := readfile("XM_0062493585.2.fasta")
settings := readconfig("config.txt")
b.ResetTimer()
lcs := NewGotoh(ary, ary2, settings)
lcs.Length() // Exec alignment
var lx, ly = lcs.Strlen()
var _, _, _ = lcs.Print(lx, ly)
}
func Benchmark5A(b *testing.B) {
//ary, ary2 := readfasta("sequences.txt")
ary := readfile("NM_000690.fasta")
ary2 := readfile("XM_0062493585.2.fasta")
settings := readconfig("config.txt")
b.ResetTimer()
lcs := NewLGotoh(ary, ary2, settings)
lcs.Length() // Exec alignment
var lx, ly = lcs.Strlen()
var _, _, _ = lcs.Print(lx, ly)
}
func Benchmark3B(b *testing.B) {
ary, ary2 := readfasta("sequences.txt")
//ary := readfile("NM_000690.fasta")
//ary2 := readfile("XM_0062493585.2.fasta")
settings := readconfig("config.txt")
b.ResetTimer()
lcs := NewGotoh(ary, ary2, settings)
lcs.Length() // Exec alignment
var lx, ly = lcs.Strlen()
var _, _, _ = lcs.Print(lx, ly)
}
func Benchmark5B(b *testing.B) {
ary, ary2 := readfasta("sequences.txt")
//ary := readfile("NM_000690.fasta")
//ary2 := readfile("XM_0062493585.2.fasta")
settings := readconfig("config.txt")
b.ResetTimer()
lcs := NewLGotoh(ary, ary2, settings)
lcs.Length() // Exec alignment
var lx, ly = lcs.Strlen()
var _, _, _ = lcs.Print(lx, ly)
}
func Benchmark6B(b *testing.B) {
ary, ary2 := readfasta("sequences.txt")
//ary := readfile("NM_000690.fasta")
//ary2 := readfile("XM_0062493585.2.fasta")
settings := readconfig("config.txt")
b.ResetTimer()
lcs := NewRGotoh(ary, ary2, settings)
lcs.Length() // Exec alignment
var lx, ly = lcs.Strlen()
var _, _, _ = lcs.Print(lx, ly)
}