Skip to content

Commit 5a5f83f

Browse files
committed
add .json example
1 parent e226756 commit 5a5f83f

File tree

1 file changed

+113
-0
lines changed

1 file changed

+113
-0
lines changed

reports/alignment.json

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
{
2+
"sequences": {
3+
"seq1": "ACGTACGT",
4+
"seq2": "GATTACA"
5+
},
6+
"parameters": {
7+
"match": 1,
8+
"mismatch": -1,
9+
"gap": -2
10+
},
11+
"matrix": [
12+
[
13+
0,
14+
-2,
15+
-4,
16+
-6,
17+
-8,
18+
-10,
19+
-12,
20+
-14
21+
],
22+
[
23+
-2,
24+
-1,
25+
-1,
26+
-3,
27+
-5,
28+
-7,
29+
-9,
30+
-11
31+
],
32+
[
33+
-4,
34+
-3,
35+
-2,
36+
-2,
37+
-4,
38+
-6,
39+
-6,
40+
-8
41+
],
42+
[
43+
-6,
44+
-3,
45+
-4,
46+
-3,
47+
-3,
48+
-5,
49+
-7,
50+
-7
51+
],
52+
[
53+
-8,
54+
-5,
55+
-4,
56+
-3,
57+
-2,
58+
-4,
59+
-6,
60+
-8
61+
],
62+
[
63+
-10,
64+
-7,
65+
-4,
66+
-5,
67+
-4,
68+
-1,
69+
-3,
70+
-5
71+
],
72+
[
73+
-12,
74+
-9,
75+
-6,
76+
-5,
77+
-6,
78+
-3,
79+
0,
80+
-2
81+
],
82+
[
83+
-14,
84+
-11,
85+
-8,
86+
-7,
87+
-6,
88+
-5,
89+
-2,
90+
-1
91+
],
92+
[
93+
-16,
94+
-13,
95+
-10,
96+
-7,
97+
-6,
98+
-7,
99+
-4,
100+
-3
101+
]
102+
],
103+
"alignments": [
104+
{
105+
"aligned_seq1": "ACGTACGT",
106+
"aligned_seq2": "GATTAC-A",
107+
"length": 8,
108+
"matches": 3,
109+
"identity_pct": 37.5,
110+
"gaps": 1
111+
}
112+
]
113+
}

0 commit comments

Comments
 (0)