genoverse 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +197 -0
- package/.github/workflows/test.yml +24 -0
- package/LICENSE.TXT +24 -0
- package/README.md +11 -0
- package/css/controlPanel.css +200 -0
- package/css/fileDrop.css +22 -0
- package/css/font-awesome.css +3 -0
- package/css/fullscreen.css +19 -0
- package/css/genoverse.css +466 -0
- package/css/karyotype.css +85 -0
- package/css/resizer.css +36 -0
- package/css/tooltips.css +26 -0
- package/css/trackControls.css +111 -0
- package/expanded.html +120 -0
- package/fontawesome/css/fontawesome.min.css +5 -0
- package/fontawesome/css/regular.min.css +5 -0
- package/fontawesome/css/solid.min.css +5 -0
- package/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/fontawesome/webfonts/fa-brands-400.woff +0 -0
- package/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/fontawesome/webfonts/fa-regular-400.woff +0 -0
- package/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/fontawesome/webfonts/fa-solid-900.woff +0 -0
- package/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/help.pdf +0 -0
- package/i/sort_handle.png +0 -0
- package/index.html +68 -0
- package/index.js +83 -0
- package/jest.config.js +4 -0
- package/js/Genoverse.js +1681 -0
- package/js/Track/Controller/Sequence.js +17 -0
- package/js/Track/Controller/Stranded.js +73 -0
- package/js/Track/Controller.js +620 -0
- package/js/Track/Model/File/BAM.js +44 -0
- package/js/Track/Model/File/BED.js +116 -0
- package/js/Track/Model/File/GFF.js +40 -0
- package/js/Track/Model/File/VCF.js +101 -0
- package/js/Track/Model/File/WIG.js +67 -0
- package/js/Track/Model/File.js +36 -0
- package/js/Track/Model/Gene/Ensembl.js +22 -0
- package/js/Track/Model/Gene.js +5 -0
- package/js/Track/Model/Sequence/Ensembl.js +4 -0
- package/js/Track/Model/Sequence/Fasta.js +60 -0
- package/js/Track/Model/Sequence.js +50 -0
- package/js/Track/Model/SequenceVariation.js +41 -0
- package/js/Track/Model/Stranded.js +28 -0
- package/js/Track/Model/Transcript/Ensembl.js +67 -0
- package/js/Track/Model/Transcript.js +5 -0
- package/js/Track/Model.js +303 -0
- package/js/Track/View/Gene/Ensembl.js +46 -0
- package/js/Track/View/Gene.js +6 -0
- package/js/Track/View/Sequence/Variation.js +115 -0
- package/js/Track/View/Sequence.js +63 -0
- package/js/Track/View/Transcript/Ensembl.js +12 -0
- package/js/Track/View/Transcript.js +28 -0
- package/js/Track/View.js +566 -0
- package/js/Track/library/Chromosome.js +145 -0
- package/js/Track/library/File/BAM.js +30 -0
- package/js/Track/library/File/BED.js +24 -0
- package/js/Track/library/File/BIGBED.js +47 -0
- package/js/Track/library/File/BIGWIG.js +52 -0
- package/js/Track/library/File/GFF.js +9 -0
- package/js/Track/library/File/VCF.js +71 -0
- package/js/Track/library/File/WIG.js +5 -0
- package/js/Track/library/File.js +10 -0
- package/js/Track/library/Gene.js +37 -0
- package/js/Track/library/Graph/Bar.js +235 -0
- package/js/Track/library/Graph/Line.js +296 -0
- package/js/Track/library/Graph.js +355 -0
- package/js/Track/library/HighlightRegion.js +292 -0
- package/js/Track/library/Legend.js +224 -0
- package/js/Track/library/Scalebar.js +227 -0
- package/js/Track/library/Scaleline.js +91 -0
- package/js/Track/library/Static.js +78 -0
- package/js/Track/library/dbSNP.js +142 -0
- package/js/Track.js +632 -0
- package/js/genomes/grch37.js +990 -0
- package/js/genomes/grch38.js +990 -0
- package/js/genoverse.min.js +2 -0
- package/js/genoverse.min.js.map +1 -0
- package/js/lib/BWReader.js +578 -0
- package/js/lib/Base.js +145 -0
- package/js/lib/VCFReader.js +286 -0
- package/js/lib/dalliance/js/bam.js +494 -0
- package/js/lib/dalliance/js/bin.js +185 -0
- package/js/lib/dalliance/js/das.js +749 -0
- package/js/lib/dalliance/js/utils.js +370 -0
- package/js/lib/dalliance-lib.js +3594 -0
- package/js/lib/dalliance-lib.min.js +68 -0
- package/js/lib/jDataView.js +2 -0
- package/js/lib/jParser.js +192 -0
- package/js/lib/jquery-ui.js +8 -0
- package/js/lib/jquery.js +2 -0
- package/js/lib/jquery.mousehold.js +53 -0
- package/js/lib/jquery.mousewheel.js +84 -0
- package/js/lib/jquery.tipsy.js +258 -0
- package/js/lib/rtree.js +1 -0
- package/js/plugins/controlPanel.js +395 -0
- package/js/plugins/fileDrop.js +62 -0
- package/js/plugins/focusRegion.js +12 -0
- package/js/plugins/fullscreen.js +77 -0
- package/js/plugins/karyotype.js +210 -0
- package/js/plugins/resizer.js +45 -0
- package/js/plugins/tooltips.js +94 -0
- package/js/plugins/trackControls.js +143 -0
- package/package.json +43 -0
- package/test/View/__snapshots__/render-bar-graph.test.js.snap +111 -0
- package/test/View/__snapshots__/render-blocks.test.js.snap +105 -0
- package/test/View/__snapshots__/render-chromosome.test.js.snap +5 -0
- package/test/View/__snapshots__/render-highlights.test.js.snap +73 -0
- package/test/View/__snapshots__/render-insert-variants.test.js.snap +9 -0
- package/test/View/__snapshots__/render-labels.test.js.snap +241 -0
- package/test/View/__snapshots__/render-legends.test.js.snap +13 -0
- package/test/View/__snapshots__/render-line-graph.test.js.snap +349 -0
- package/test/View/__snapshots__/render-scalebar.test.js.snap +49 -0
- package/test/View/__snapshots__/render-scaleline.test.js.snap +31 -0
- package/test/View/__snapshots__/render-sequence.test.js.snap +23 -0
- package/test/View/__snapshots__/render-stranded.test.js.snap +5 -0
- package/test/View/__snapshots__/render-transcripts.test.js.snap +193 -0
- package/test/View/render-bar-graph.test.js +87 -0
- package/test/View/render-blocks.test.js +171 -0
- package/test/View/render-chromosome.test.js +40 -0
- package/test/View/render-highlights.test.js +67 -0
- package/test/View/render-insert-variants.test.js +11 -0
- package/test/View/render-labels.test.js +266 -0
- package/test/View/render-legends.test.js +31 -0
- package/test/View/render-line-graph.test.js +169 -0
- package/test/View/render-scalebar.test.js +36 -0
- package/test/View/render-scaleline.test.js +28 -0
- package/test/View/render-sequence.test.js +49 -0
- package/test/View/render-stranded.test.js +10 -0
- package/test/View/render-transcripts.test.js +165 -0
- package/test/create-and-destroy.test.js +63 -0
- package/test/track-ordering.test.js +514 -0
- package/test/track_config/__snapshots__/config-settings.test.js.snap +23 -0
- package/test/track_config/config-settings.test.js +321 -0
- package/test/track_config/zoom-level-settings.test.js +98 -0
- package/test/utils.js +80 -0
- package/utils/createGenome.js +52 -0
- package/utils/devServer.js +36 -0
- package/utils/expandedTemplate.html +46 -0
- package/utils/git-hooks/post-commit +9 -0
- package/utils/git-hooks/pre-commit +7 -0
- package/utils/git-hooks/setup +6 -0
- package/utils/makeExpanded.js +19 -0
- package/webpack.config.js +39 -0
|
@@ -0,0 +1,990 @@
|
|
|
1
|
+
Genoverse.Genomes.grch37 = {
|
|
2
|
+
'1': {
|
|
3
|
+
'size' : 249250621,
|
|
4
|
+
'bands' : [
|
|
5
|
+
{ 'id': 'p11.1', 'start': 121500001, 'end': 125000000, 'type': 'acen' },
|
|
6
|
+
{ 'id': 'p11.2', 'start': 120600001, 'end': 121500000, 'type': 'gneg' },
|
|
7
|
+
{ 'id': 'p12', 'start': 117800001, 'end': 120600000, 'type': 'gpos50' },
|
|
8
|
+
{ 'id': 'p13.1', 'start': 116100001, 'end': 117800000, 'type': 'gneg' },
|
|
9
|
+
{ 'id': 'p13.2', 'start': 111800001, 'end': 116100000, 'type': 'gpos50' },
|
|
10
|
+
{ 'id': 'p13.3', 'start': 107200001, 'end': 111800000, 'type': 'gneg' },
|
|
11
|
+
{ 'id': 'p21.1', 'start': 102200001, 'end': 107200000, 'type': 'gpos100' },
|
|
12
|
+
{ 'id': 'p21.2', 'start': 99700001, 'end': 102200000, 'type': 'gneg' },
|
|
13
|
+
{ 'id': 'p21.3', 'start': 94700001, 'end': 99700000, 'type': 'gpos75' },
|
|
14
|
+
{ 'id': 'p22.1', 'start': 92000001, 'end': 94700000, 'type': 'gneg' },
|
|
15
|
+
{ 'id': 'p22.2', 'start': 88400001, 'end': 92000000, 'type': 'gpos75' },
|
|
16
|
+
{ 'id': 'p22.3', 'start': 84900001, 'end': 88400000, 'type': 'gneg' },
|
|
17
|
+
{ 'id': 'p31.1', 'start': 69700001, 'end': 84900000, 'type': 'gpos100' },
|
|
18
|
+
{ 'id': 'p31.2', 'start': 68900001, 'end': 69700000, 'type': 'gneg' },
|
|
19
|
+
{ 'id': 'p31.3', 'start': 61300001, 'end': 68900000, 'type': 'gpos50' },
|
|
20
|
+
{ 'id': 'p32.1', 'start': 59000001, 'end': 61300000, 'type': 'gneg' },
|
|
21
|
+
{ 'id': 'p32.2', 'start': 56100001, 'end': 59000000, 'type': 'gpos50' },
|
|
22
|
+
{ 'id': 'p32.3', 'start': 50700001, 'end': 56100000, 'type': 'gneg' },
|
|
23
|
+
{ 'id': 'p33', 'start': 46800001, 'end': 50700000, 'type': 'gpos75' },
|
|
24
|
+
{ 'id': 'p34.1', 'start': 44100001, 'end': 46800000, 'type': 'gneg' },
|
|
25
|
+
{ 'id': 'p34.2', 'start': 40100001, 'end': 44100000, 'type': 'gpos25' },
|
|
26
|
+
{ 'id': 'p34.3', 'start': 34600001, 'end': 40100000, 'type': 'gneg' },
|
|
27
|
+
{ 'id': 'p35.1', 'start': 32400001, 'end': 34600000, 'type': 'gpos25' },
|
|
28
|
+
{ 'id': 'p35.2', 'start': 30200001, 'end': 32400000, 'type': 'gneg' },
|
|
29
|
+
{ 'id': 'p35.3', 'start': 28000001, 'end': 30200000, 'type': 'gpos25' },
|
|
30
|
+
{ 'id': 'p36.11', 'start': 23900001, 'end': 28000000, 'type': 'gneg' },
|
|
31
|
+
{ 'id': 'p36.12', 'start': 20400001, 'end': 23900000, 'type': 'gpos25' },
|
|
32
|
+
{ 'id': 'p36.13', 'start': 16200001, 'end': 20400000, 'type': 'gneg' },
|
|
33
|
+
{ 'id': 'p36.21', 'start': 12700001, 'end': 16200000, 'type': 'gpos50' },
|
|
34
|
+
{ 'id': 'p36.22', 'start': 9200001, 'end': 12700000, 'type': 'gneg' },
|
|
35
|
+
{ 'id': 'p36.23', 'start': 7200001, 'end': 9200000, 'type': 'gpos25' },
|
|
36
|
+
{ 'id': 'p36.31', 'start': 5400001, 'end': 7200000, 'type': 'gneg' },
|
|
37
|
+
{ 'id': 'p36.32', 'start': 2300001, 'end': 5400000, 'type': 'gpos25' },
|
|
38
|
+
{ 'id': 'p36.33', 'start': 1, 'end': 2300000, 'type': 'gneg' },
|
|
39
|
+
{ 'id': 'q11', 'start': 125000001, 'end': 128900000, 'type': 'acen' },
|
|
40
|
+
{ 'id': 'q12', 'start': 128900001, 'end': 142600000, 'type': 'gvar' },
|
|
41
|
+
{ 'id': 'q21.1', 'start': 142600001, 'end': 147000000, 'type': 'gneg' },
|
|
42
|
+
{ 'id': 'q21.2', 'start': 147000001, 'end': 150300000, 'type': 'gpos50' },
|
|
43
|
+
{ 'id': 'q21.3', 'start': 150300001, 'end': 155000000, 'type': 'gneg' },
|
|
44
|
+
{ 'id': 'q22', 'start': 155000001, 'end': 156500000, 'type': 'gpos50' },
|
|
45
|
+
{ 'id': 'q23.1', 'start': 156500001, 'end': 159100000, 'type': 'gneg' },
|
|
46
|
+
{ 'id': 'q23.2', 'start': 159100001, 'end': 160500000, 'type': 'gpos50' },
|
|
47
|
+
{ 'id': 'q23.3', 'start': 160500001, 'end': 165500000, 'type': 'gneg' },
|
|
48
|
+
{ 'id': 'q24.1', 'start': 165500001, 'end': 167200000, 'type': 'gpos50' },
|
|
49
|
+
{ 'id': 'q24.2', 'start': 167200001, 'end': 170900000, 'type': 'gneg' },
|
|
50
|
+
{ 'id': 'q24.3', 'start': 170900001, 'end': 172900000, 'type': 'gpos75' },
|
|
51
|
+
{ 'id': 'q25.1', 'start': 172900001, 'end': 176000000, 'type': 'gneg' },
|
|
52
|
+
{ 'id': 'q25.2', 'start': 176000001, 'end': 180300000, 'type': 'gpos50' },
|
|
53
|
+
{ 'id': 'q25.3', 'start': 180300001, 'end': 185800000, 'type': 'gneg' },
|
|
54
|
+
{ 'id': 'q31.1', 'start': 185800001, 'end': 190800000, 'type': 'gpos100' },
|
|
55
|
+
{ 'id': 'q31.2', 'start': 190800001, 'end': 193800000, 'type': 'gneg' },
|
|
56
|
+
{ 'id': 'q31.3', 'start': 193800001, 'end': 198700000, 'type': 'gpos100' },
|
|
57
|
+
{ 'id': 'q32.1', 'start': 198700001, 'end': 207200000, 'type': 'gneg' },
|
|
58
|
+
{ 'id': 'q32.2', 'start': 207200001, 'end': 211500000, 'type': 'gpos25' },
|
|
59
|
+
{ 'id': 'q32.3', 'start': 211500001, 'end': 214500000, 'type': 'gneg' },
|
|
60
|
+
{ 'id': 'q41', 'start': 214500001, 'end': 224100000, 'type': 'gpos100' },
|
|
61
|
+
{ 'id': 'q42.11', 'start': 224100001, 'end': 224600000, 'type': 'gneg' },
|
|
62
|
+
{ 'id': 'q42.12', 'start': 224600001, 'end': 227000000, 'type': 'gpos25' },
|
|
63
|
+
{ 'id': 'q42.13', 'start': 227000001, 'end': 230700000, 'type': 'gneg' },
|
|
64
|
+
{ 'id': 'q42.2', 'start': 230700001, 'end': 234700000, 'type': 'gpos50' },
|
|
65
|
+
{ 'id': 'q42.3', 'start': 234700001, 'end': 236600000, 'type': 'gneg' },
|
|
66
|
+
{ 'id': 'q43', 'start': 236600001, 'end': 243700000, 'type': 'gpos75' },
|
|
67
|
+
{ 'id': 'q44', 'start': 243700001, 'end': 249250621, 'type': 'gneg' }
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
'2': {
|
|
71
|
+
'size' : 243199373,
|
|
72
|
+
'bands' : [
|
|
73
|
+
{ 'id': 'p11.1', 'start': 90500001, 'end': 93300000, 'type': 'acen' },
|
|
74
|
+
{ 'id': 'p11.2', 'start': 83300001, 'end': 90500000, 'type': 'gneg' },
|
|
75
|
+
{ 'id': 'p12', 'start': 75000001, 'end': 83300000, 'type': 'gpos100' },
|
|
76
|
+
{ 'id': 'p13.1', 'start': 73500001, 'end': 75000000, 'type': 'gneg' },
|
|
77
|
+
{ 'id': 'p13.2', 'start': 71500001, 'end': 73500000, 'type': 'gpos50' },
|
|
78
|
+
{ 'id': 'p13.3', 'start': 68600001, 'end': 71500000, 'type': 'gneg' },
|
|
79
|
+
{ 'id': 'p14', 'start': 64100001, 'end': 68600000, 'type': 'gpos50' },
|
|
80
|
+
{ 'id': 'p15', 'start': 61300001, 'end': 64100000, 'type': 'gneg' },
|
|
81
|
+
{ 'id': 'p16.1', 'start': 55000001, 'end': 61300000, 'type': 'gpos100' },
|
|
82
|
+
{ 'id': 'p16.2', 'start': 52900001, 'end': 55000000, 'type': 'gneg' },
|
|
83
|
+
{ 'id': 'p16.3', 'start': 47800001, 'end': 52900000, 'type': 'gpos100' },
|
|
84
|
+
{ 'id': 'p21', 'start': 41800001, 'end': 47800000, 'type': 'gneg' },
|
|
85
|
+
{ 'id': 'p22.1', 'start': 38600001, 'end': 41800000, 'type': 'gpos50' },
|
|
86
|
+
{ 'id': 'p22.2', 'start': 36600001, 'end': 38600000, 'type': 'gneg' },
|
|
87
|
+
{ 'id': 'p22.3', 'start': 32100001, 'end': 36600000, 'type': 'gpos75' },
|
|
88
|
+
{ 'id': 'p23.1', 'start': 30000001, 'end': 32100000, 'type': 'gneg' },
|
|
89
|
+
{ 'id': 'p23.2', 'start': 27900001, 'end': 30000000, 'type': 'gpos25' },
|
|
90
|
+
{ 'id': 'p23.3', 'start': 24000001, 'end': 27900000, 'type': 'gneg' },
|
|
91
|
+
{ 'id': 'p24.1', 'start': 19200001, 'end': 24000000, 'type': 'gpos75' },
|
|
92
|
+
{ 'id': 'p24.2', 'start': 16700001, 'end': 19200000, 'type': 'gneg' },
|
|
93
|
+
{ 'id': 'p24.3', 'start': 12200001, 'end': 16700000, 'type': 'gpos75' },
|
|
94
|
+
{ 'id': 'p25.1', 'start': 7100001, 'end': 12200000, 'type': 'gneg' },
|
|
95
|
+
{ 'id': 'p25.2', 'start': 4400001, 'end': 7100000, 'type': 'gpos50' },
|
|
96
|
+
{ 'id': 'p25.3', 'start': 1, 'end': 4400000, 'type': 'gneg' },
|
|
97
|
+
{ 'id': 'q11.1', 'start': 93300001, 'end': 96800000, 'type': 'acen' },
|
|
98
|
+
{ 'id': 'q11.2', 'start': 96800001, 'end': 102700000, 'type': 'gneg' },
|
|
99
|
+
{ 'id': 'q12.1', 'start': 102700001, 'end': 106000000, 'type': 'gpos50' },
|
|
100
|
+
{ 'id': 'q12.2', 'start': 106000001, 'end': 107500000, 'type': 'gneg' },
|
|
101
|
+
{ 'id': 'q12.3', 'start': 107500001, 'end': 110200000, 'type': 'gpos25' },
|
|
102
|
+
{ 'id': 'q13', 'start': 110200001, 'end': 114400000, 'type': 'gneg' },
|
|
103
|
+
{ 'id': 'q14.1', 'start': 114400001, 'end': 118800000, 'type': 'gpos50' },
|
|
104
|
+
{ 'id': 'q14.2', 'start': 118800001, 'end': 122400000, 'type': 'gneg' },
|
|
105
|
+
{ 'id': 'q14.3', 'start': 122400001, 'end': 129900000, 'type': 'gpos50' },
|
|
106
|
+
{ 'id': 'q21.1', 'start': 129900001, 'end': 132500000, 'type': 'gneg' },
|
|
107
|
+
{ 'id': 'q21.2', 'start': 132500001, 'end': 135100000, 'type': 'gpos25' },
|
|
108
|
+
{ 'id': 'q21.3', 'start': 135100001, 'end': 136800000, 'type': 'gneg' },
|
|
109
|
+
{ 'id': 'q22.1', 'start': 136800001, 'end': 142200000, 'type': 'gpos100' },
|
|
110
|
+
{ 'id': 'q22.2', 'start': 142200001, 'end': 144100000, 'type': 'gneg' },
|
|
111
|
+
{ 'id': 'q22.3', 'start': 144100001, 'end': 148700000, 'type': 'gpos100' },
|
|
112
|
+
{ 'id': 'q23.1', 'start': 148700001, 'end': 149900000, 'type': 'gneg' },
|
|
113
|
+
{ 'id': 'q23.2', 'start': 149900001, 'end': 150500000, 'type': 'gpos25' },
|
|
114
|
+
{ 'id': 'q23.3', 'start': 150500001, 'end': 154900000, 'type': 'gneg' },
|
|
115
|
+
{ 'id': 'q24.1', 'start': 154900001, 'end': 159800000, 'type': 'gpos75' },
|
|
116
|
+
{ 'id': 'q24.2', 'start': 159800001, 'end': 163700000, 'type': 'gneg' },
|
|
117
|
+
{ 'id': 'q24.3', 'start': 163700001, 'end': 169700000, 'type': 'gpos75' },
|
|
118
|
+
{ 'id': 'q31.1', 'start': 169700001, 'end': 178000000, 'type': 'gneg' },
|
|
119
|
+
{ 'id': 'q31.2', 'start': 178000001, 'end': 180600000, 'type': 'gpos50' },
|
|
120
|
+
{ 'id': 'q31.3', 'start': 180600001, 'end': 183000000, 'type': 'gneg' },
|
|
121
|
+
{ 'id': 'q32.1', 'start': 183000001, 'end': 189400000, 'type': 'gpos75' },
|
|
122
|
+
{ 'id': 'q32.2', 'start': 189400001, 'end': 191900000, 'type': 'gneg' },
|
|
123
|
+
{ 'id': 'q32.3', 'start': 191900001, 'end': 197400000, 'type': 'gpos75' },
|
|
124
|
+
{ 'id': 'q33.1', 'start': 197400001, 'end': 203300000, 'type': 'gneg' },
|
|
125
|
+
{ 'id': 'q33.2', 'start': 203300001, 'end': 204900000, 'type': 'gpos50' },
|
|
126
|
+
{ 'id': 'q33.3', 'start': 204900001, 'end': 209000000, 'type': 'gneg' },
|
|
127
|
+
{ 'id': 'q34', 'start': 209000001, 'end': 215300000, 'type': 'gpos100' },
|
|
128
|
+
{ 'id': 'q35', 'start': 215300001, 'end': 221500000, 'type': 'gneg' },
|
|
129
|
+
{ 'id': 'q36.1', 'start': 221500001, 'end': 225200000, 'type': 'gpos75' },
|
|
130
|
+
{ 'id': 'q36.2', 'start': 225200001, 'end': 226100000, 'type': 'gneg' },
|
|
131
|
+
{ 'id': 'q36.3', 'start': 226100001, 'end': 231000000, 'type': 'gpos100' },
|
|
132
|
+
{ 'id': 'q37.1', 'start': 231000001, 'end': 235600000, 'type': 'gneg' },
|
|
133
|
+
{ 'id': 'q37.2', 'start': 235600001, 'end': 237300000, 'type': 'gpos50' },
|
|
134
|
+
{ 'id': 'q37.3', 'start': 237300001, 'end': 243199373, 'type': 'gneg' }
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
'3': {
|
|
138
|
+
'size' : 198022430,
|
|
139
|
+
'bands' : [
|
|
140
|
+
{ 'id': 'p11.1', 'start': 87900001, 'end': 91000000, 'type': 'acen' },
|
|
141
|
+
{ 'id': 'p11.2', 'start': 87200001, 'end': 87900000, 'type': 'gneg' },
|
|
142
|
+
{ 'id': 'p12.1', 'start': 83500001, 'end': 87200000, 'type': 'gpos75' },
|
|
143
|
+
{ 'id': 'p12.2', 'start': 79800001, 'end': 83500000, 'type': 'gneg' },
|
|
144
|
+
{ 'id': 'p12.3', 'start': 74200001, 'end': 79800000, 'type': 'gpos75' },
|
|
145
|
+
{ 'id': 'p13', 'start': 69800001, 'end': 74200000, 'type': 'gneg' },
|
|
146
|
+
{ 'id': 'p14.1', 'start': 63700001, 'end': 69800000, 'type': 'gpos50' },
|
|
147
|
+
{ 'id': 'p14.2', 'start': 58600001, 'end': 63700000, 'type': 'gneg' },
|
|
148
|
+
{ 'id': 'p14.3', 'start': 54400001, 'end': 58600000, 'type': 'gpos50' },
|
|
149
|
+
{ 'id': 'p21.1', 'start': 52300001, 'end': 54400000, 'type': 'gneg' },
|
|
150
|
+
{ 'id': 'p21.2', 'start': 50600001, 'end': 52300000, 'type': 'gpos25' },
|
|
151
|
+
{ 'id': 'p21.31', 'start': 44200001, 'end': 50600000, 'type': 'gneg' },
|
|
152
|
+
{ 'id': 'p21.32', 'start': 44100001, 'end': 44200000, 'type': 'gpos50' },
|
|
153
|
+
{ 'id': 'p21.33', 'start': 43700001, 'end': 44100000, 'type': 'gneg' },
|
|
154
|
+
{ 'id': 'p22.1', 'start': 39400001, 'end': 43700000, 'type': 'gpos75' },
|
|
155
|
+
{ 'id': 'p22.2', 'start': 36500001, 'end': 39400000, 'type': 'gneg' },
|
|
156
|
+
{ 'id': 'p22.3', 'start': 32100001, 'end': 36500000, 'type': 'gpos50' },
|
|
157
|
+
{ 'id': 'p23', 'start': 30900001, 'end': 32100000, 'type': 'gneg' },
|
|
158
|
+
{ 'id': 'p24.1', 'start': 26400001, 'end': 30900000, 'type': 'gpos75' },
|
|
159
|
+
{ 'id': 'p24.2', 'start': 23900001, 'end': 26400000, 'type': 'gneg' },
|
|
160
|
+
{ 'id': 'p24.3', 'start': 16400001, 'end': 23900000, 'type': 'gpos100' },
|
|
161
|
+
{ 'id': 'p25.1', 'start': 13300001, 'end': 16400000, 'type': 'gneg' },
|
|
162
|
+
{ 'id': 'p25.2', 'start': 11800001, 'end': 13300000, 'type': 'gpos25' },
|
|
163
|
+
{ 'id': 'p25.3', 'start': 8700001, 'end': 11800000, 'type': 'gneg' },
|
|
164
|
+
{ 'id': 'p26.1', 'start': 4000001, 'end': 8700000, 'type': 'gpos50' },
|
|
165
|
+
{ 'id': 'p26.2', 'start': 2800001, 'end': 4000000, 'type': 'gneg' },
|
|
166
|
+
{ 'id': 'p26.3', 'start': 1, 'end': 2800000, 'type': 'gpos50' },
|
|
167
|
+
{ 'id': 'q11.1', 'start': 91000001, 'end': 93900000, 'type': 'acen' },
|
|
168
|
+
{ 'id': 'q11.2', 'start': 93900001, 'end': 98300000, 'type': 'gvar' },
|
|
169
|
+
{ 'id': 'q12.1', 'start': 98300001, 'end': 100000000, 'type': 'gneg' },
|
|
170
|
+
{ 'id': 'q12.2', 'start': 100000001, 'end': 100900000, 'type': 'gpos25' },
|
|
171
|
+
{ 'id': 'q12.3', 'start': 100900001, 'end': 102800000, 'type': 'gneg' },
|
|
172
|
+
{ 'id': 'q13.11', 'start': 102800001, 'end': 106200000, 'type': 'gpos75' },
|
|
173
|
+
{ 'id': 'q13.12', 'start': 106200001, 'end': 107900000, 'type': 'gneg' },
|
|
174
|
+
{ 'id': 'q13.13', 'start': 107900001, 'end': 111300000, 'type': 'gpos50' },
|
|
175
|
+
{ 'id': 'q13.2', 'start': 111300001, 'end': 113500000, 'type': 'gneg' },
|
|
176
|
+
{ 'id': 'q13.31', 'start': 113500001, 'end': 117300000, 'type': 'gpos75' },
|
|
177
|
+
{ 'id': 'q13.32', 'start': 117300001, 'end': 119000000, 'type': 'gneg' },
|
|
178
|
+
{ 'id': 'q13.33', 'start': 119000001, 'end': 121900000, 'type': 'gpos75' },
|
|
179
|
+
{ 'id': 'q21.1', 'start': 121900001, 'end': 123800000, 'type': 'gneg' },
|
|
180
|
+
{ 'id': 'q21.2', 'start': 123800001, 'end': 125800000, 'type': 'gpos25' },
|
|
181
|
+
{ 'id': 'q21.3', 'start': 125800001, 'end': 129200000, 'type': 'gneg' },
|
|
182
|
+
{ 'id': 'q22.1', 'start': 129200001, 'end': 133700000, 'type': 'gpos25' },
|
|
183
|
+
{ 'id': 'q22.2', 'start': 133700001, 'end': 135700000, 'type': 'gneg' },
|
|
184
|
+
{ 'id': 'q22.3', 'start': 135700001, 'end': 138700000, 'type': 'gpos25' },
|
|
185
|
+
{ 'id': 'q23', 'start': 138700001, 'end': 142800000, 'type': 'gneg' },
|
|
186
|
+
{ 'id': 'q24', 'start': 142800001, 'end': 148900000, 'type': 'gpos100' },
|
|
187
|
+
{ 'id': 'q25.1', 'start': 148900001, 'end': 152100000, 'type': 'gneg' },
|
|
188
|
+
{ 'id': 'q25.2', 'start': 152100001, 'end': 155000000, 'type': 'gpos50' },
|
|
189
|
+
{ 'id': 'q25.31', 'start': 155000001, 'end': 157000000, 'type': 'gneg' },
|
|
190
|
+
{ 'id': 'q25.32', 'start': 157000001, 'end': 159000000, 'type': 'gpos50' },
|
|
191
|
+
{ 'id': 'q25.33', 'start': 159000001, 'end': 160700000, 'type': 'gneg' },
|
|
192
|
+
{ 'id': 'q26.1', 'start': 160700001, 'end': 167600000, 'type': 'gpos100' },
|
|
193
|
+
{ 'id': 'q26.2', 'start': 167600001, 'end': 170900000, 'type': 'gneg' },
|
|
194
|
+
{ 'id': 'q26.31', 'start': 170900001, 'end': 175700000, 'type': 'gpos75' },
|
|
195
|
+
{ 'id': 'q26.32', 'start': 175700001, 'end': 179000000, 'type': 'gneg' },
|
|
196
|
+
{ 'id': 'q26.33', 'start': 179000001, 'end': 182700000, 'type': 'gpos75' },
|
|
197
|
+
{ 'id': 'q27.1', 'start': 182700001, 'end': 184500000, 'type': 'gneg' },
|
|
198
|
+
{ 'id': 'q27.2', 'start': 184500001, 'end': 186000000, 'type': 'gpos25' },
|
|
199
|
+
{ 'id': 'q27.3', 'start': 186000001, 'end': 187900000, 'type': 'gneg' },
|
|
200
|
+
{ 'id': 'q28', 'start': 187900001, 'end': 192300000, 'type': 'gpos75' },
|
|
201
|
+
{ 'id': 'q29', 'start': 192300001, 'end': 198022430, 'type': 'gneg' }
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
'4': {
|
|
205
|
+
'size' : 191154276,
|
|
206
|
+
'bands' : [
|
|
207
|
+
{ 'id': 'p11', 'start': 48200001, 'end': 50400000, 'type': 'acen' },
|
|
208
|
+
{ 'id': 'p12', 'start': 44600001, 'end': 48200000, 'type': 'gneg' },
|
|
209
|
+
{ 'id': 'p13', 'start': 41200001, 'end': 44600000, 'type': 'gpos50' },
|
|
210
|
+
{ 'id': 'p14', 'start': 35800001, 'end': 41200000, 'type': 'gneg' },
|
|
211
|
+
{ 'id': 'p15.1', 'start': 27700001, 'end': 35800000, 'type': 'gpos100' },
|
|
212
|
+
{ 'id': 'p15.2', 'start': 21300001, 'end': 27700000, 'type': 'gneg' },
|
|
213
|
+
{ 'id': 'p15.31', 'start': 17800001, 'end': 21300000, 'type': 'gpos75' },
|
|
214
|
+
{ 'id': 'p15.32', 'start': 15200001, 'end': 17800000, 'type': 'gneg' },
|
|
215
|
+
{ 'id': 'p15.33', 'start': 11300001, 'end': 15200000, 'type': 'gpos50' },
|
|
216
|
+
{ 'id': 'p16.1', 'start': 6000001, 'end': 11300000, 'type': 'gneg' },
|
|
217
|
+
{ 'id': 'p16.2', 'start': 4500001, 'end': 6000000, 'type': 'gpos25' },
|
|
218
|
+
{ 'id': 'p16.3', 'start': 1, 'end': 4500000, 'type': 'gneg' },
|
|
219
|
+
{ 'id': 'q11', 'start': 50400001, 'end': 52700000, 'type': 'acen' },
|
|
220
|
+
{ 'id': 'q12', 'start': 52700001, 'end': 59500000, 'type': 'gneg' },
|
|
221
|
+
{ 'id': 'q13.1', 'start': 59500001, 'end': 66600000, 'type': 'gpos100' },
|
|
222
|
+
{ 'id': 'q13.2', 'start': 66600001, 'end': 70500000, 'type': 'gneg' },
|
|
223
|
+
{ 'id': 'q13.3', 'start': 70500001, 'end': 76300000, 'type': 'gpos75' },
|
|
224
|
+
{ 'id': 'q21.1', 'start': 76300001, 'end': 78900000, 'type': 'gneg' },
|
|
225
|
+
{ 'id': 'q21.21', 'start': 78900001, 'end': 82400000, 'type': 'gpos50' },
|
|
226
|
+
{ 'id': 'q21.22', 'start': 82400001, 'end': 84100000, 'type': 'gneg' },
|
|
227
|
+
{ 'id': 'q21.23', 'start': 84100001, 'end': 86900000, 'type': 'gpos25' },
|
|
228
|
+
{ 'id': 'q21.3', 'start': 86900001, 'end': 88000000, 'type': 'gneg' },
|
|
229
|
+
{ 'id': 'q22.1', 'start': 88000001, 'end': 93700000, 'type': 'gpos75' },
|
|
230
|
+
{ 'id': 'q22.2', 'start': 93700001, 'end': 95100000, 'type': 'gneg' },
|
|
231
|
+
{ 'id': 'q22.3', 'start': 95100001, 'end': 98800000, 'type': 'gpos75' },
|
|
232
|
+
{ 'id': 'q23', 'start': 98800001, 'end': 101100000, 'type': 'gneg' },
|
|
233
|
+
{ 'id': 'q24', 'start': 101100001, 'end': 107700000, 'type': 'gpos50' },
|
|
234
|
+
{ 'id': 'q25', 'start': 107700001, 'end': 114100000, 'type': 'gneg' },
|
|
235
|
+
{ 'id': 'q26', 'start': 114100001, 'end': 120800000, 'type': 'gpos75' },
|
|
236
|
+
{ 'id': 'q27', 'start': 120800001, 'end': 123800000, 'type': 'gneg' },
|
|
237
|
+
{ 'id': 'q28.1', 'start': 123800001, 'end': 128800000, 'type': 'gpos50' },
|
|
238
|
+
{ 'id': 'q28.2', 'start': 128800001, 'end': 131100000, 'type': 'gneg' },
|
|
239
|
+
{ 'id': 'q28.3', 'start': 131100001, 'end': 139500000, 'type': 'gpos100' },
|
|
240
|
+
{ 'id': 'q31.1', 'start': 139500001, 'end': 141500000, 'type': 'gneg' },
|
|
241
|
+
{ 'id': 'q31.21', 'start': 141500001, 'end': 146800000, 'type': 'gpos25' },
|
|
242
|
+
{ 'id': 'q31.22', 'start': 146800001, 'end': 148500000, 'type': 'gneg' },
|
|
243
|
+
{ 'id': 'q31.23', 'start': 148500001, 'end': 151100000, 'type': 'gpos25' },
|
|
244
|
+
{ 'id': 'q31.3', 'start': 151100001, 'end': 155600000, 'type': 'gneg' },
|
|
245
|
+
{ 'id': 'q32.1', 'start': 155600001, 'end': 161800000, 'type': 'gpos100' },
|
|
246
|
+
{ 'id': 'q32.2', 'start': 161800001, 'end': 164500000, 'type': 'gneg' },
|
|
247
|
+
{ 'id': 'q32.3', 'start': 164500001, 'end': 170100000, 'type': 'gpos100' },
|
|
248
|
+
{ 'id': 'q33', 'start': 170100001, 'end': 171900000, 'type': 'gneg' },
|
|
249
|
+
{ 'id': 'q34.1', 'start': 171900001, 'end': 176300000, 'type': 'gpos75' },
|
|
250
|
+
{ 'id': 'q34.2', 'start': 176300001, 'end': 177500000, 'type': 'gneg' },
|
|
251
|
+
{ 'id': 'q34.3', 'start': 177500001, 'end': 183200000, 'type': 'gpos100' },
|
|
252
|
+
{ 'id': 'q35.1', 'start': 183200001, 'end': 187100000, 'type': 'gneg' },
|
|
253
|
+
{ 'id': 'q35.2', 'start': 187100001, 'end': 191154276, 'type': 'gpos25' }
|
|
254
|
+
]
|
|
255
|
+
},
|
|
256
|
+
'5': {
|
|
257
|
+
'size' : 180915260,
|
|
258
|
+
'bands' : [
|
|
259
|
+
{ 'id': 'p11', 'start': 46100001, 'end': 48400000, 'type': 'acen' },
|
|
260
|
+
{ 'id': 'p12', 'start': 42500001, 'end': 46100000, 'type': 'gpos50' },
|
|
261
|
+
{ 'id': 'p13.1', 'start': 38400001, 'end': 42500000, 'type': 'gneg' },
|
|
262
|
+
{ 'id': 'p13.2', 'start': 33800001, 'end': 38400000, 'type': 'gpos25' },
|
|
263
|
+
{ 'id': 'p13.3', 'start': 28900001, 'end': 33800000, 'type': 'gneg' },
|
|
264
|
+
{ 'id': 'p14.1', 'start': 24600001, 'end': 28900000, 'type': 'gpos100' },
|
|
265
|
+
{ 'id': 'p14.2', 'start': 23300001, 'end': 24600000, 'type': 'gneg' },
|
|
266
|
+
{ 'id': 'p14.3', 'start': 18400001, 'end': 23300000, 'type': 'gpos100' },
|
|
267
|
+
{ 'id': 'p15.1', 'start': 15000001, 'end': 18400000, 'type': 'gneg' },
|
|
268
|
+
{ 'id': 'p15.2', 'start': 9800001, 'end': 15000000, 'type': 'gpos50' },
|
|
269
|
+
{ 'id': 'p15.31', 'start': 6300001, 'end': 9800000, 'type': 'gneg' },
|
|
270
|
+
{ 'id': 'p15.32', 'start': 4500001, 'end': 6300000, 'type': 'gpos25' },
|
|
271
|
+
{ 'id': 'p15.33', 'start': 1, 'end': 4500000, 'type': 'gneg' },
|
|
272
|
+
{ 'id': 'q11.1', 'start': 48400001, 'end': 50700000, 'type': 'acen' },
|
|
273
|
+
{ 'id': 'q11.2', 'start': 50700001, 'end': 58900000, 'type': 'gneg' },
|
|
274
|
+
{ 'id': 'q12.1', 'start': 58900001, 'end': 62900000, 'type': 'gpos75' },
|
|
275
|
+
{ 'id': 'q12.2', 'start': 62900001, 'end': 63200000, 'type': 'gneg' },
|
|
276
|
+
{ 'id': 'q12.3', 'start': 63200001, 'end': 66700000, 'type': 'gpos75' },
|
|
277
|
+
{ 'id': 'q13.1', 'start': 66700001, 'end': 68400000, 'type': 'gneg' },
|
|
278
|
+
{ 'id': 'q13.2', 'start': 68400001, 'end': 73300000, 'type': 'gpos50' },
|
|
279
|
+
{ 'id': 'q13.3', 'start': 73300001, 'end': 76900000, 'type': 'gneg' },
|
|
280
|
+
{ 'id': 'q14.1', 'start': 76900001, 'end': 81400000, 'type': 'gpos50' },
|
|
281
|
+
{ 'id': 'q14.2', 'start': 81400001, 'end': 82800000, 'type': 'gneg' },
|
|
282
|
+
{ 'id': 'q14.3', 'start': 82800001, 'end': 92300000, 'type': 'gpos100' },
|
|
283
|
+
{ 'id': 'q15', 'start': 92300001, 'end': 98200000, 'type': 'gneg' },
|
|
284
|
+
{ 'id': 'q21.1', 'start': 98200001, 'end': 102800000, 'type': 'gpos100' },
|
|
285
|
+
{ 'id': 'q21.2', 'start': 102800001, 'end': 104500000, 'type': 'gneg' },
|
|
286
|
+
{ 'id': 'q21.3', 'start': 104500001, 'end': 109600000, 'type': 'gpos100' },
|
|
287
|
+
{ 'id': 'q22.1', 'start': 109600001, 'end': 111500000, 'type': 'gneg' },
|
|
288
|
+
{ 'id': 'q22.2', 'start': 111500001, 'end': 113100000, 'type': 'gpos50' },
|
|
289
|
+
{ 'id': 'q22.3', 'start': 113100001, 'end': 115200000, 'type': 'gneg' },
|
|
290
|
+
{ 'id': 'q23.1', 'start': 115200001, 'end': 121400000, 'type': 'gpos100' },
|
|
291
|
+
{ 'id': 'q23.2', 'start': 121400001, 'end': 127300000, 'type': 'gneg' },
|
|
292
|
+
{ 'id': 'q23.3', 'start': 127300001, 'end': 130600000, 'type': 'gpos100' },
|
|
293
|
+
{ 'id': 'q31.1', 'start': 130600001, 'end': 136200000, 'type': 'gneg' },
|
|
294
|
+
{ 'id': 'q31.2', 'start': 136200001, 'end': 139500000, 'type': 'gpos25' },
|
|
295
|
+
{ 'id': 'q31.3', 'start': 139500001, 'end': 144500000, 'type': 'gneg' },
|
|
296
|
+
{ 'id': 'q32', 'start': 144500001, 'end': 149800000, 'type': 'gpos75' },
|
|
297
|
+
{ 'id': 'q33.1', 'start': 149800001, 'end': 152700000, 'type': 'gneg' },
|
|
298
|
+
{ 'id': 'q33.2', 'start': 152700001, 'end': 155700000, 'type': 'gpos50' },
|
|
299
|
+
{ 'id': 'q33.3', 'start': 155700001, 'end': 159900000, 'type': 'gneg' },
|
|
300
|
+
{ 'id': 'q34', 'start': 159900001, 'end': 168500000, 'type': 'gpos100' },
|
|
301
|
+
{ 'id': 'q35.1', 'start': 168500001, 'end': 172800000, 'type': 'gneg' },
|
|
302
|
+
{ 'id': 'q35.2', 'start': 172800001, 'end': 176600000, 'type': 'gpos25' },
|
|
303
|
+
{ 'id': 'q35.3', 'start': 176600001, 'end': 180915260, 'type': 'gneg' }
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
'6': {
|
|
307
|
+
'size' : 171115067,
|
|
308
|
+
'bands' : [
|
|
309
|
+
{ 'id': 'p11.1', 'start': 58700001, 'end': 61000000, 'type': 'acen' },
|
|
310
|
+
{ 'id': 'p11.2', 'start': 57000001, 'end': 58700000, 'type': 'gneg' },
|
|
311
|
+
{ 'id': 'p12.1', 'start': 52900001, 'end': 57000000, 'type': 'gpos100' },
|
|
312
|
+
{ 'id': 'p12.2', 'start': 51800001, 'end': 52900000, 'type': 'gneg' },
|
|
313
|
+
{ 'id': 'p12.3', 'start': 46200001, 'end': 51800000, 'type': 'gpos100' },
|
|
314
|
+
{ 'id': 'p21.1', 'start': 40500001, 'end': 46200000, 'type': 'gneg' },
|
|
315
|
+
{ 'id': 'p21.2', 'start': 36600001, 'end': 40500000, 'type': 'gpos25' },
|
|
316
|
+
{ 'id': 'p21.31', 'start': 33500001, 'end': 36600000, 'type': 'gneg' },
|
|
317
|
+
{ 'id': 'p21.32', 'start': 32100001, 'end': 33500000, 'type': 'gpos25' },
|
|
318
|
+
{ 'id': 'p21.33', 'start': 30400001, 'end': 32100000, 'type': 'gneg' },
|
|
319
|
+
{ 'id': 'p22.1', 'start': 27000001, 'end': 30400000, 'type': 'gpos50' },
|
|
320
|
+
{ 'id': 'p22.2', 'start': 25200001, 'end': 27000000, 'type': 'gneg' },
|
|
321
|
+
{ 'id': 'p22.3', 'start': 15200001, 'end': 25200000, 'type': 'gpos75' },
|
|
322
|
+
{ 'id': 'p23', 'start': 13400001, 'end': 15200000, 'type': 'gneg' },
|
|
323
|
+
{ 'id': 'p24.1', 'start': 11600001, 'end': 13400000, 'type': 'gpos25' },
|
|
324
|
+
{ 'id': 'p24.2', 'start': 10600001, 'end': 11600000, 'type': 'gneg' },
|
|
325
|
+
{ 'id': 'p24.3', 'start': 7100001, 'end': 10600000, 'type': 'gpos50' },
|
|
326
|
+
{ 'id': 'p25.1', 'start': 4200001, 'end': 7100000, 'type': 'gneg' },
|
|
327
|
+
{ 'id': 'p25.2', 'start': 2300001, 'end': 4200000, 'type': 'gpos25' },
|
|
328
|
+
{ 'id': 'p25.3', 'start': 1, 'end': 2300000, 'type': 'gneg' },
|
|
329
|
+
{ 'id': 'q11.1', 'start': 61000001, 'end': 63300000, 'type': 'acen' },
|
|
330
|
+
{ 'id': 'q11.2', 'start': 63300001, 'end': 63400000, 'type': 'gneg' },
|
|
331
|
+
{ 'id': 'q12', 'start': 63400001, 'end': 70000000, 'type': 'gpos100' },
|
|
332
|
+
{ 'id': 'q13', 'start': 70000001, 'end': 75900000, 'type': 'gneg' },
|
|
333
|
+
{ 'id': 'q14.1', 'start': 75900001, 'end': 83900000, 'type': 'gpos50' },
|
|
334
|
+
{ 'id': 'q14.2', 'start': 83900001, 'end': 84900000, 'type': 'gneg' },
|
|
335
|
+
{ 'id': 'q14.3', 'start': 84900001, 'end': 88000000, 'type': 'gpos50' },
|
|
336
|
+
{ 'id': 'q15', 'start': 88000001, 'end': 93100000, 'type': 'gneg' },
|
|
337
|
+
{ 'id': 'q16.1', 'start': 93100001, 'end': 99500000, 'type': 'gpos100' },
|
|
338
|
+
{ 'id': 'q16.2', 'start': 99500001, 'end': 100600000, 'type': 'gneg' },
|
|
339
|
+
{ 'id': 'q16.3', 'start': 100600001, 'end': 105500000, 'type': 'gpos100' },
|
|
340
|
+
{ 'id': 'q21', 'start': 105500001, 'end': 114600000, 'type': 'gneg' },
|
|
341
|
+
{ 'id': 'q22.1', 'start': 114600001, 'end': 118300000, 'type': 'gpos75' },
|
|
342
|
+
{ 'id': 'q22.2', 'start': 118300001, 'end': 118500000, 'type': 'gneg' },
|
|
343
|
+
{ 'id': 'q22.31', 'start': 118500001, 'end': 126100000, 'type': 'gpos100' },
|
|
344
|
+
{ 'id': 'q22.32', 'start': 126100001, 'end': 127100000, 'type': 'gneg' },
|
|
345
|
+
{ 'id': 'q22.33', 'start': 127100001, 'end': 130300000, 'type': 'gpos75' },
|
|
346
|
+
{ 'id': 'q23.1', 'start': 130300001, 'end': 131200000, 'type': 'gneg' },
|
|
347
|
+
{ 'id': 'q23.2', 'start': 131200001, 'end': 135200000, 'type': 'gpos50' },
|
|
348
|
+
{ 'id': 'q23.3', 'start': 135200001, 'end': 139000000, 'type': 'gneg' },
|
|
349
|
+
{ 'id': 'q24.1', 'start': 139000001, 'end': 142800000, 'type': 'gpos75' },
|
|
350
|
+
{ 'id': 'q24.2', 'start': 142800001, 'end': 145600000, 'type': 'gneg' },
|
|
351
|
+
{ 'id': 'q24.3', 'start': 145600001, 'end': 149000000, 'type': 'gpos75' },
|
|
352
|
+
{ 'id': 'q25.1', 'start': 149000001, 'end': 152500000, 'type': 'gneg' },
|
|
353
|
+
{ 'id': 'q25.2', 'start': 152500001, 'end': 155500000, 'type': 'gpos50' },
|
|
354
|
+
{ 'id': 'q25.3', 'start': 155500001, 'end': 161000000, 'type': 'gneg' },
|
|
355
|
+
{ 'id': 'q26', 'start': 161000001, 'end': 164500000, 'type': 'gpos50' },
|
|
356
|
+
{ 'id': 'q27', 'start': 164500001, 'end': 171115067, 'type': 'gneg' }
|
|
357
|
+
]
|
|
358
|
+
},
|
|
359
|
+
'7': {
|
|
360
|
+
'size' : 159138663,
|
|
361
|
+
'bands' : [
|
|
362
|
+
{ 'id': 'p11.1', 'start': 58000001, 'end': 59900000, 'type': 'acen' },
|
|
363
|
+
{ 'id': 'p11.2', 'start': 54000001, 'end': 58000000, 'type': 'gneg' },
|
|
364
|
+
{ 'id': 'p12.1', 'start': 50500001, 'end': 54000000, 'type': 'gpos75' },
|
|
365
|
+
{ 'id': 'p12.2', 'start': 49000001, 'end': 50500000, 'type': 'gneg' },
|
|
366
|
+
{ 'id': 'p12.3', 'start': 45400001, 'end': 49000000, 'type': 'gpos75' },
|
|
367
|
+
{ 'id': 'p13', 'start': 43300001, 'end': 45400000, 'type': 'gneg' },
|
|
368
|
+
{ 'id': 'p14.1', 'start': 37200001, 'end': 43300000, 'type': 'gpos75' },
|
|
369
|
+
{ 'id': 'p14.2', 'start': 35000001, 'end': 37200000, 'type': 'gneg' },
|
|
370
|
+
{ 'id': 'p14.3', 'start': 28800001, 'end': 35000000, 'type': 'gpos75' },
|
|
371
|
+
{ 'id': 'p15.1', 'start': 28000001, 'end': 28800000, 'type': 'gneg' },
|
|
372
|
+
{ 'id': 'p15.2', 'start': 25500001, 'end': 28000000, 'type': 'gpos50' },
|
|
373
|
+
{ 'id': 'p15.3', 'start': 20900001, 'end': 25500000, 'type': 'gneg' },
|
|
374
|
+
{ 'id': 'p21.1', 'start': 16500001, 'end': 20900000, 'type': 'gpos100' },
|
|
375
|
+
{ 'id': 'p21.2', 'start': 13800001, 'end': 16500000, 'type': 'gneg' },
|
|
376
|
+
{ 'id': 'p21.3', 'start': 7300001, 'end': 13800000, 'type': 'gpos100' },
|
|
377
|
+
{ 'id': 'p22.1', 'start': 4500001, 'end': 7300000, 'type': 'gneg' },
|
|
378
|
+
{ 'id': 'p22.2', 'start': 2800001, 'end': 4500000, 'type': 'gpos25' },
|
|
379
|
+
{ 'id': 'p22.3', 'start': 1, 'end': 2800000, 'type': 'gneg' },
|
|
380
|
+
{ 'id': 'q11.1', 'start': 59900001, 'end': 61700000, 'type': 'acen' },
|
|
381
|
+
{ 'id': 'q11.21', 'start': 61700001, 'end': 67000000, 'type': 'gneg' },
|
|
382
|
+
{ 'id': 'q11.22', 'start': 67000001, 'end': 72200000, 'type': 'gpos50' },
|
|
383
|
+
{ 'id': 'q11.23', 'start': 72200001, 'end': 77500000, 'type': 'gneg' },
|
|
384
|
+
{ 'id': 'q21.11', 'start': 77500001, 'end': 86400000, 'type': 'gpos100' },
|
|
385
|
+
{ 'id': 'q21.12', 'start': 86400001, 'end': 88200000, 'type': 'gneg' },
|
|
386
|
+
{ 'id': 'q21.13', 'start': 88200001, 'end': 91100000, 'type': 'gpos75' },
|
|
387
|
+
{ 'id': 'q21.2', 'start': 91100001, 'end': 92800000, 'type': 'gneg' },
|
|
388
|
+
{ 'id': 'q21.3', 'start': 92800001, 'end': 98000000, 'type': 'gpos75' },
|
|
389
|
+
{ 'id': 'q22.1', 'start': 98000001, 'end': 103800000, 'type': 'gneg' },
|
|
390
|
+
{ 'id': 'q22.2', 'start': 103800001, 'end': 104500000, 'type': 'gpos50' },
|
|
391
|
+
{ 'id': 'q22.3', 'start': 104500001, 'end': 107400000, 'type': 'gneg' },
|
|
392
|
+
{ 'id': 'q31.1', 'start': 107400001, 'end': 114600000, 'type': 'gpos75' },
|
|
393
|
+
{ 'id': 'q31.2', 'start': 114600001, 'end': 117400000, 'type': 'gneg' },
|
|
394
|
+
{ 'id': 'q31.31', 'start': 117400001, 'end': 121100000, 'type': 'gpos75' },
|
|
395
|
+
{ 'id': 'q31.32', 'start': 121100001, 'end': 123800000, 'type': 'gneg' },
|
|
396
|
+
{ 'id': 'q31.33', 'start': 123800001, 'end': 127100000, 'type': 'gpos75' },
|
|
397
|
+
{ 'id': 'q32.1', 'start': 127100001, 'end': 129200000, 'type': 'gneg' },
|
|
398
|
+
{ 'id': 'q32.2', 'start': 129200001, 'end': 130400000, 'type': 'gpos25' },
|
|
399
|
+
{ 'id': 'q32.3', 'start': 130400001, 'end': 132600000, 'type': 'gneg' },
|
|
400
|
+
{ 'id': 'q33', 'start': 132600001, 'end': 138200000, 'type': 'gpos50' },
|
|
401
|
+
{ 'id': 'q34', 'start': 138200001, 'end': 143100000, 'type': 'gneg' },
|
|
402
|
+
{ 'id': 'q35', 'start': 143100001, 'end': 147900000, 'type': 'gpos75' },
|
|
403
|
+
{ 'id': 'q36.1', 'start': 147900001, 'end': 152600000, 'type': 'gneg' },
|
|
404
|
+
{ 'id': 'q36.2', 'start': 152600001, 'end': 155100000, 'type': 'gpos25' },
|
|
405
|
+
{ 'id': 'q36.3', 'start': 155100001, 'end': 159138663, 'type': 'gneg' }
|
|
406
|
+
]
|
|
407
|
+
},
|
|
408
|
+
'8': {
|
|
409
|
+
'size' : 146364022,
|
|
410
|
+
'bands' : [
|
|
411
|
+
{ 'id': 'p11.1', 'start': 43100001, 'end': 45600000, 'type': 'acen' },
|
|
412
|
+
{ 'id': 'p11.21', 'start': 39700001, 'end': 43100000, 'type': 'gneg' },
|
|
413
|
+
{ 'id': 'p11.22', 'start': 38300001, 'end': 39700000, 'type': 'gpos25' },
|
|
414
|
+
{ 'id': 'p11.23', 'start': 36500001, 'end': 38300000, 'type': 'gneg' },
|
|
415
|
+
{ 'id': 'p12', 'start': 28800001, 'end': 36500000, 'type': 'gpos75' },
|
|
416
|
+
{ 'id': 'p21.1', 'start': 27400001, 'end': 28800000, 'type': 'gneg' },
|
|
417
|
+
{ 'id': 'p21.2', 'start': 23300001, 'end': 27400000, 'type': 'gpos50' },
|
|
418
|
+
{ 'id': 'p21.3', 'start': 19000001, 'end': 23300000, 'type': 'gneg' },
|
|
419
|
+
{ 'id': 'p22', 'start': 12700001, 'end': 19000000, 'type': 'gpos100' },
|
|
420
|
+
{ 'id': 'p23.1', 'start': 6200001, 'end': 12700000, 'type': 'gneg' },
|
|
421
|
+
{ 'id': 'p23.2', 'start': 2200001, 'end': 6200000, 'type': 'gpos75' },
|
|
422
|
+
{ 'id': 'p23.3', 'start': 1, 'end': 2200000, 'type': 'gneg' },
|
|
423
|
+
{ 'id': 'q11.1', 'start': 45600001, 'end': 48100000, 'type': 'acen' },
|
|
424
|
+
{ 'id': 'q11.21', 'start': 48100001, 'end': 52200000, 'type': 'gneg' },
|
|
425
|
+
{ 'id': 'q11.22', 'start': 52200001, 'end': 52600000, 'type': 'gpos75' },
|
|
426
|
+
{ 'id': 'q11.23', 'start': 52600001, 'end': 55500000, 'type': 'gneg' },
|
|
427
|
+
{ 'id': 'q12.1', 'start': 55500001, 'end': 61600000, 'type': 'gpos50' },
|
|
428
|
+
{ 'id': 'q12.2', 'start': 61600001, 'end': 62200000, 'type': 'gneg' },
|
|
429
|
+
{ 'id': 'q12.3', 'start': 62200001, 'end': 66000000, 'type': 'gpos50' },
|
|
430
|
+
{ 'id': 'q13.1', 'start': 66000001, 'end': 68000000, 'type': 'gneg' },
|
|
431
|
+
{ 'id': 'q13.2', 'start': 68000001, 'end': 70500000, 'type': 'gpos50' },
|
|
432
|
+
{ 'id': 'q13.3', 'start': 70500001, 'end': 73900000, 'type': 'gneg' },
|
|
433
|
+
{ 'id': 'q21.11', 'start': 73900001, 'end': 78300000, 'type': 'gpos100' },
|
|
434
|
+
{ 'id': 'q21.12', 'start': 78300001, 'end': 80100000, 'type': 'gneg' },
|
|
435
|
+
{ 'id': 'q21.13', 'start': 80100001, 'end': 84600000, 'type': 'gpos75' },
|
|
436
|
+
{ 'id': 'q21.2', 'start': 84600001, 'end': 86900000, 'type': 'gneg' },
|
|
437
|
+
{ 'id': 'q21.3', 'start': 86900001, 'end': 93300000, 'type': 'gpos100' },
|
|
438
|
+
{ 'id': 'q22.1', 'start': 93300001, 'end': 99000000, 'type': 'gneg' },
|
|
439
|
+
{ 'id': 'q22.2', 'start': 99000001, 'end': 101600000, 'type': 'gpos25' },
|
|
440
|
+
{ 'id': 'q22.3', 'start': 101600001, 'end': 106200000, 'type': 'gneg' },
|
|
441
|
+
{ 'id': 'q23.1', 'start': 106200001, 'end': 110500000, 'type': 'gpos75' },
|
|
442
|
+
{ 'id': 'q23.2', 'start': 110500001, 'end': 112100000, 'type': 'gneg' },
|
|
443
|
+
{ 'id': 'q23.3', 'start': 112100001, 'end': 117700000, 'type': 'gpos100' },
|
|
444
|
+
{ 'id': 'q24.11', 'start': 117700001, 'end': 119200000, 'type': 'gneg' },
|
|
445
|
+
{ 'id': 'q24.12', 'start': 119200001, 'end': 122500000, 'type': 'gpos50' },
|
|
446
|
+
{ 'id': 'q24.13', 'start': 122500001, 'end': 127300000, 'type': 'gneg' },
|
|
447
|
+
{ 'id': 'q24.21', 'start': 127300001, 'end': 131500000, 'type': 'gpos50' },
|
|
448
|
+
{ 'id': 'q24.22', 'start': 131500001, 'end': 136400000, 'type': 'gneg' },
|
|
449
|
+
{ 'id': 'q24.23', 'start': 136400001, 'end': 139900000, 'type': 'gpos75' },
|
|
450
|
+
{ 'id': 'q24.3', 'start': 139900001, 'end': 146364022, 'type': 'gneg' }
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
'9': {
|
|
454
|
+
'size' : 141213431,
|
|
455
|
+
'bands' : [
|
|
456
|
+
{ 'id': 'p11.1', 'start': 47300001, 'end': 49000000, 'type': 'acen' },
|
|
457
|
+
{ 'id': 'p11.2', 'start': 43600001, 'end': 47300000, 'type': 'gneg' },
|
|
458
|
+
{ 'id': 'p12', 'start': 41000001, 'end': 43600000, 'type': 'gpos50' },
|
|
459
|
+
{ 'id': 'p13.1', 'start': 38400001, 'end': 41000000, 'type': 'gneg' },
|
|
460
|
+
{ 'id': 'p13.2', 'start': 36300001, 'end': 38400000, 'type': 'gpos25' },
|
|
461
|
+
{ 'id': 'p13.3', 'start': 33200001, 'end': 36300000, 'type': 'gneg' },
|
|
462
|
+
{ 'id': 'p21.1', 'start': 28000001, 'end': 33200000, 'type': 'gpos100' },
|
|
463
|
+
{ 'id': 'p21.2', 'start': 25600001, 'end': 28000000, 'type': 'gneg' },
|
|
464
|
+
{ 'id': 'p21.3', 'start': 19900001, 'end': 25600000, 'type': 'gpos100' },
|
|
465
|
+
{ 'id': 'p22.1', 'start': 18500001, 'end': 19900000, 'type': 'gneg' },
|
|
466
|
+
{ 'id': 'p22.2', 'start': 16600001, 'end': 18500000, 'type': 'gpos25' },
|
|
467
|
+
{ 'id': 'p22.3', 'start': 14200001, 'end': 16600000, 'type': 'gneg' },
|
|
468
|
+
{ 'id': 'p23', 'start': 9000001, 'end': 14200000, 'type': 'gpos75' },
|
|
469
|
+
{ 'id': 'p24.1', 'start': 4600001, 'end': 9000000, 'type': 'gneg' },
|
|
470
|
+
{ 'id': 'p24.2', 'start': 2200001, 'end': 4600000, 'type': 'gpos25' },
|
|
471
|
+
{ 'id': 'p24.3', 'start': 1, 'end': 2200000, 'type': 'gneg' },
|
|
472
|
+
{ 'id': 'q11', 'start': 49000001, 'end': 50700000, 'type': 'acen' },
|
|
473
|
+
{ 'id': 'q12', 'start': 50700001, 'end': 65900000, 'type': 'gvar' },
|
|
474
|
+
{ 'id': 'q13', 'start': 65900001, 'end': 68700000, 'type': 'gneg' },
|
|
475
|
+
{ 'id': 'q21.11', 'start': 68700001, 'end': 72200000, 'type': 'gpos25' },
|
|
476
|
+
{ 'id': 'q21.12', 'start': 72200001, 'end': 74000000, 'type': 'gneg' },
|
|
477
|
+
{ 'id': 'q21.13', 'start': 74000001, 'end': 79200000, 'type': 'gpos50' },
|
|
478
|
+
{ 'id': 'q21.2', 'start': 79200001, 'end': 81100000, 'type': 'gneg' },
|
|
479
|
+
{ 'id': 'q21.31', 'start': 81100001, 'end': 84100000, 'type': 'gpos50' },
|
|
480
|
+
{ 'id': 'q21.32', 'start': 84100001, 'end': 86900000, 'type': 'gneg' },
|
|
481
|
+
{ 'id': 'q21.33', 'start': 86900001, 'end': 90400000, 'type': 'gpos50' },
|
|
482
|
+
{ 'id': 'q22.1', 'start': 90400001, 'end': 91800000, 'type': 'gneg' },
|
|
483
|
+
{ 'id': 'q22.2', 'start': 91800001, 'end': 93900000, 'type': 'gpos25' },
|
|
484
|
+
{ 'id': 'q22.31', 'start': 93900001, 'end': 96600000, 'type': 'gneg' },
|
|
485
|
+
{ 'id': 'q22.32', 'start': 96600001, 'end': 99300000, 'type': 'gpos25' },
|
|
486
|
+
{ 'id': 'q22.33', 'start': 99300001, 'end': 102600000, 'type': 'gneg' },
|
|
487
|
+
{ 'id': 'q31.1', 'start': 102600001, 'end': 108200000, 'type': 'gpos100' },
|
|
488
|
+
{ 'id': 'q31.2', 'start': 108200001, 'end': 111300000, 'type': 'gneg' },
|
|
489
|
+
{ 'id': 'q31.3', 'start': 111300001, 'end': 114900000, 'type': 'gpos25' },
|
|
490
|
+
{ 'id': 'q32', 'start': 114900001, 'end': 117700000, 'type': 'gneg' },
|
|
491
|
+
{ 'id': 'q33.1', 'start': 117700001, 'end': 122500000, 'type': 'gpos75' },
|
|
492
|
+
{ 'id': 'q33.2', 'start': 122500001, 'end': 125800000, 'type': 'gneg' },
|
|
493
|
+
{ 'id': 'q33.3', 'start': 125800001, 'end': 130300000, 'type': 'gpos25' },
|
|
494
|
+
{ 'id': 'q34.11', 'start': 130300001, 'end': 133500000, 'type': 'gneg' },
|
|
495
|
+
{ 'id': 'q34.12', 'start': 133500001, 'end': 134000000, 'type': 'gpos25' },
|
|
496
|
+
{ 'id': 'q34.13', 'start': 134000001, 'end': 135900000, 'type': 'gneg' },
|
|
497
|
+
{ 'id': 'q34.2', 'start': 135900001, 'end': 137400000, 'type': 'gpos25' },
|
|
498
|
+
{ 'id': 'q34.3', 'start': 137400001, 'end': 141213431, 'type': 'gneg' }
|
|
499
|
+
]
|
|
500
|
+
},
|
|
501
|
+
'10': {
|
|
502
|
+
'size' : 135534747,
|
|
503
|
+
'bands' : [
|
|
504
|
+
{ 'id': 'p11.1', 'start': 38000001, 'end': 40200000, 'type': 'acen' },
|
|
505
|
+
{ 'id': 'p11.21', 'start': 34400001, 'end': 38000000, 'type': 'gneg' },
|
|
506
|
+
{ 'id': 'p11.22', 'start': 31300001, 'end': 34400000, 'type': 'gpos25' },
|
|
507
|
+
{ 'id': 'p11.23', 'start': 29600001, 'end': 31300000, 'type': 'gneg' },
|
|
508
|
+
{ 'id': 'p12.1', 'start': 24600001, 'end': 29600000, 'type': 'gpos50' },
|
|
509
|
+
{ 'id': 'p12.2', 'start': 22600001, 'end': 24600000, 'type': 'gneg' },
|
|
510
|
+
{ 'id': 'p12.31', 'start': 18700001, 'end': 22600000, 'type': 'gpos75' },
|
|
511
|
+
{ 'id': 'p12.32', 'start': 18600001, 'end': 18700000, 'type': 'gneg' },
|
|
512
|
+
{ 'id': 'p12.33', 'start': 17300001, 'end': 18600000, 'type': 'gpos75' },
|
|
513
|
+
{ 'id': 'p13', 'start': 12200001, 'end': 17300000, 'type': 'gneg' },
|
|
514
|
+
{ 'id': 'p14', 'start': 6600001, 'end': 12200000, 'type': 'gpos75' },
|
|
515
|
+
{ 'id': 'p15.1', 'start': 3800001, 'end': 6600000, 'type': 'gneg' },
|
|
516
|
+
{ 'id': 'p15.2', 'start': 3000001, 'end': 3800000, 'type': 'gpos25' },
|
|
517
|
+
{ 'id': 'p15.3', 'start': 1, 'end': 3000000, 'type': 'gneg' },
|
|
518
|
+
{ 'id': 'q11.1', 'start': 40200001, 'end': 42300000, 'type': 'acen' },
|
|
519
|
+
{ 'id': 'q11.21', 'start': 42300001, 'end': 46100000, 'type': 'gneg' },
|
|
520
|
+
{ 'id': 'q11.22', 'start': 46100001, 'end': 49900000, 'type': 'gpos25' },
|
|
521
|
+
{ 'id': 'q11.23', 'start': 49900001, 'end': 52900000, 'type': 'gneg' },
|
|
522
|
+
{ 'id': 'q21.1', 'start': 52900001, 'end': 61200000, 'type': 'gpos100' },
|
|
523
|
+
{ 'id': 'q21.2', 'start': 61200001, 'end': 64500000, 'type': 'gneg' },
|
|
524
|
+
{ 'id': 'q21.3', 'start': 64500001, 'end': 70600000, 'type': 'gpos100' },
|
|
525
|
+
{ 'id': 'q22.1', 'start': 70600001, 'end': 74900000, 'type': 'gneg' },
|
|
526
|
+
{ 'id': 'q22.2', 'start': 74900001, 'end': 77700000, 'type': 'gpos50' },
|
|
527
|
+
{ 'id': 'q22.3', 'start': 77700001, 'end': 82000000, 'type': 'gneg' },
|
|
528
|
+
{ 'id': 'q23.1', 'start': 82000001, 'end': 87900000, 'type': 'gpos100' },
|
|
529
|
+
{ 'id': 'q23.2', 'start': 87900001, 'end': 89500000, 'type': 'gneg' },
|
|
530
|
+
{ 'id': 'q23.31', 'start': 89500001, 'end': 92900000, 'type': 'gpos75' },
|
|
531
|
+
{ 'id': 'q23.32', 'start': 92900001, 'end': 94100000, 'type': 'gneg' },
|
|
532
|
+
{ 'id': 'q23.33', 'start': 94100001, 'end': 97000000, 'type': 'gpos50' },
|
|
533
|
+
{ 'id': 'q24.1', 'start': 97000001, 'end': 99300000, 'type': 'gneg' },
|
|
534
|
+
{ 'id': 'q24.2', 'start': 99300001, 'end': 101900000, 'type': 'gpos50' },
|
|
535
|
+
{ 'id': 'q24.31', 'start': 101900001, 'end': 103000000, 'type': 'gneg' },
|
|
536
|
+
{ 'id': 'q24.32', 'start': 103000001, 'end': 104900000, 'type': 'gpos25' },
|
|
537
|
+
{ 'id': 'q24.33', 'start': 104900001, 'end': 105800000, 'type': 'gneg' },
|
|
538
|
+
{ 'id': 'q25.1', 'start': 105800001, 'end': 111900000, 'type': 'gpos100' },
|
|
539
|
+
{ 'id': 'q25.2', 'start': 111900001, 'end': 114900000, 'type': 'gneg' },
|
|
540
|
+
{ 'id': 'q25.3', 'start': 114900001, 'end': 119100000, 'type': 'gpos75' },
|
|
541
|
+
{ 'id': 'q26.11', 'start': 119100001, 'end': 121700000, 'type': 'gneg' },
|
|
542
|
+
{ 'id': 'q26.12', 'start': 121700001, 'end': 123100000, 'type': 'gpos50' },
|
|
543
|
+
{ 'id': 'q26.13', 'start': 123100001, 'end': 127500000, 'type': 'gneg' },
|
|
544
|
+
{ 'id': 'q26.2', 'start': 127500001, 'end': 130600000, 'type': 'gpos50' },
|
|
545
|
+
{ 'id': 'q26.3', 'start': 130600001, 'end': 135534747, 'type': 'gneg' }
|
|
546
|
+
]
|
|
547
|
+
},
|
|
548
|
+
'11': {
|
|
549
|
+
'size' : 135006516,
|
|
550
|
+
'bands' : [
|
|
551
|
+
{ 'id': 'p11.11', 'start': 51600001, 'end': 53700000, 'type': 'acen' },
|
|
552
|
+
{ 'id': 'p11.12', 'start': 48800001, 'end': 51600000, 'type': 'gpos75' },
|
|
553
|
+
{ 'id': 'p11.2', 'start': 43500001, 'end': 48800000, 'type': 'gneg' },
|
|
554
|
+
{ 'id': 'p12', 'start': 36400001, 'end': 43500000, 'type': 'gpos100' },
|
|
555
|
+
{ 'id': 'p13', 'start': 31000001, 'end': 36400000, 'type': 'gneg' },
|
|
556
|
+
{ 'id': 'p14.1', 'start': 27200001, 'end': 31000000, 'type': 'gpos75' },
|
|
557
|
+
{ 'id': 'p14.2', 'start': 26100001, 'end': 27200000, 'type': 'gneg' },
|
|
558
|
+
{ 'id': 'p14.3', 'start': 21700001, 'end': 26100000, 'type': 'gpos100' },
|
|
559
|
+
{ 'id': 'p15.1', 'start': 16200001, 'end': 21700000, 'type': 'gneg' },
|
|
560
|
+
{ 'id': 'p15.2', 'start': 12700001, 'end': 16200000, 'type': 'gpos50' },
|
|
561
|
+
{ 'id': 'p15.3', 'start': 10700001, 'end': 12700000, 'type': 'gneg' },
|
|
562
|
+
{ 'id': 'p15.4', 'start': 2800001, 'end': 10700000, 'type': 'gpos50' },
|
|
563
|
+
{ 'id': 'p15.5', 'start': 1, 'end': 2800000, 'type': 'gneg' },
|
|
564
|
+
{ 'id': 'q11', 'start': 53700001, 'end': 55700000, 'type': 'acen' },
|
|
565
|
+
{ 'id': 'q12.1', 'start': 55700001, 'end': 59900000, 'type': 'gpos75' },
|
|
566
|
+
{ 'id': 'q12.2', 'start': 59900001, 'end': 61700000, 'type': 'gneg' },
|
|
567
|
+
{ 'id': 'q12.3', 'start': 61700001, 'end': 63400000, 'type': 'gpos25' },
|
|
568
|
+
{ 'id': 'q13.1', 'start': 63400001, 'end': 65900000, 'type': 'gneg' },
|
|
569
|
+
{ 'id': 'q13.2', 'start': 65900001, 'end': 68400000, 'type': 'gpos25' },
|
|
570
|
+
{ 'id': 'q13.3', 'start': 68400001, 'end': 70400000, 'type': 'gneg' },
|
|
571
|
+
{ 'id': 'q13.4', 'start': 70400001, 'end': 75200000, 'type': 'gpos50' },
|
|
572
|
+
{ 'id': 'q13.5', 'start': 75200001, 'end': 77100000, 'type': 'gneg' },
|
|
573
|
+
{ 'id': 'q14.1', 'start': 77100001, 'end': 85600000, 'type': 'gpos100' },
|
|
574
|
+
{ 'id': 'q14.2', 'start': 85600001, 'end': 88300000, 'type': 'gneg' },
|
|
575
|
+
{ 'id': 'q14.3', 'start': 88300001, 'end': 92800000, 'type': 'gpos100' },
|
|
576
|
+
{ 'id': 'q21', 'start': 92800001, 'end': 97200000, 'type': 'gneg' },
|
|
577
|
+
{ 'id': 'q22.1', 'start': 97200001, 'end': 102100000, 'type': 'gpos100' },
|
|
578
|
+
{ 'id': 'q22.2', 'start': 102100001, 'end': 102900000, 'type': 'gneg' },
|
|
579
|
+
{ 'id': 'q22.3', 'start': 102900001, 'end': 110400000, 'type': 'gpos100' },
|
|
580
|
+
{ 'id': 'q23.1', 'start': 110400001, 'end': 112500000, 'type': 'gneg' },
|
|
581
|
+
{ 'id': 'q23.2', 'start': 112500001, 'end': 114500000, 'type': 'gpos50' },
|
|
582
|
+
{ 'id': 'q23.3', 'start': 114500001, 'end': 121200000, 'type': 'gneg' },
|
|
583
|
+
{ 'id': 'q24.1', 'start': 121200001, 'end': 123900000, 'type': 'gpos50' },
|
|
584
|
+
{ 'id': 'q24.2', 'start': 123900001, 'end': 127800000, 'type': 'gneg' },
|
|
585
|
+
{ 'id': 'q24.3', 'start': 127800001, 'end': 130800000, 'type': 'gpos50' },
|
|
586
|
+
{ 'id': 'q25', 'start': 130800001, 'end': 135006516, 'type': 'gneg' }
|
|
587
|
+
]
|
|
588
|
+
},
|
|
589
|
+
'12': {
|
|
590
|
+
'size' : 133851895,
|
|
591
|
+
'bands' : [
|
|
592
|
+
{ 'id': 'p11.1', 'start': 33300001, 'end': 35800000, 'type': 'acen' },
|
|
593
|
+
{ 'id': 'p11.21', 'start': 30700001, 'end': 33300000, 'type': 'gneg' },
|
|
594
|
+
{ 'id': 'p11.22', 'start': 27800001, 'end': 30700000, 'type': 'gpos50' },
|
|
595
|
+
{ 'id': 'p11.23', 'start': 26500001, 'end': 27800000, 'type': 'gneg' },
|
|
596
|
+
{ 'id': 'p12.1', 'start': 21300001, 'end': 26500000, 'type': 'gpos100' },
|
|
597
|
+
{ 'id': 'p12.2', 'start': 20000001, 'end': 21300000, 'type': 'gneg' },
|
|
598
|
+
{ 'id': 'p12.3', 'start': 14800001, 'end': 20000000, 'type': 'gpos100' },
|
|
599
|
+
{ 'id': 'p13.1', 'start': 12800001, 'end': 14800000, 'type': 'gneg' },
|
|
600
|
+
{ 'id': 'p13.2', 'start': 10100001, 'end': 12800000, 'type': 'gpos75' },
|
|
601
|
+
{ 'id': 'p13.31', 'start': 5400001, 'end': 10100000, 'type': 'gneg' },
|
|
602
|
+
{ 'id': 'p13.32', 'start': 3300001, 'end': 5400000, 'type': 'gpos25' },
|
|
603
|
+
{ 'id': 'p13.33', 'start': 1, 'end': 3300000, 'type': 'gneg' },
|
|
604
|
+
{ 'id': 'q11', 'start': 35800001, 'end': 38200000, 'type': 'acen' },
|
|
605
|
+
{ 'id': 'q12', 'start': 38200001, 'end': 46400000, 'type': 'gpos100' },
|
|
606
|
+
{ 'id': 'q13.11', 'start': 46400001, 'end': 49100000, 'type': 'gneg' },
|
|
607
|
+
{ 'id': 'q13.12', 'start': 49100001, 'end': 51500000, 'type': 'gpos25' },
|
|
608
|
+
{ 'id': 'q13.13', 'start': 51500001, 'end': 54900000, 'type': 'gneg' },
|
|
609
|
+
{ 'id': 'q13.2', 'start': 54900001, 'end': 56600000, 'type': 'gpos25' },
|
|
610
|
+
{ 'id': 'q13.3', 'start': 56600001, 'end': 58100000, 'type': 'gneg' },
|
|
611
|
+
{ 'id': 'q14.1', 'start': 58100001, 'end': 63100000, 'type': 'gpos75' },
|
|
612
|
+
{ 'id': 'q14.2', 'start': 63100001, 'end': 65100000, 'type': 'gneg' },
|
|
613
|
+
{ 'id': 'q14.3', 'start': 65100001, 'end': 67700000, 'type': 'gpos50' },
|
|
614
|
+
{ 'id': 'q15', 'start': 67700001, 'end': 71500000, 'type': 'gneg' },
|
|
615
|
+
{ 'id': 'q21.1', 'start': 71500001, 'end': 75700000, 'type': 'gpos75' },
|
|
616
|
+
{ 'id': 'q21.2', 'start': 75700001, 'end': 80300000, 'type': 'gneg' },
|
|
617
|
+
{ 'id': 'q21.31', 'start': 80300001, 'end': 86700000, 'type': 'gpos100' },
|
|
618
|
+
{ 'id': 'q21.32', 'start': 86700001, 'end': 89000000, 'type': 'gneg' },
|
|
619
|
+
{ 'id': 'q21.33', 'start': 89000001, 'end': 92600000, 'type': 'gpos100' },
|
|
620
|
+
{ 'id': 'q22', 'start': 92600001, 'end': 96200000, 'type': 'gneg' },
|
|
621
|
+
{ 'id': 'q23.1', 'start': 96200001, 'end': 101600000, 'type': 'gpos75' },
|
|
622
|
+
{ 'id': 'q23.2', 'start': 101600001, 'end': 103800000, 'type': 'gneg' },
|
|
623
|
+
{ 'id': 'q23.3', 'start': 103800001, 'end': 109000000, 'type': 'gpos50' },
|
|
624
|
+
{ 'id': 'q24.11', 'start': 109000001, 'end': 111700000, 'type': 'gneg' },
|
|
625
|
+
{ 'id': 'q24.12', 'start': 111700001, 'end': 112300000, 'type': 'gpos25' },
|
|
626
|
+
{ 'id': 'q24.13', 'start': 112300001, 'end': 114300000, 'type': 'gneg' },
|
|
627
|
+
{ 'id': 'q24.21', 'start': 114300001, 'end': 116800000, 'type': 'gpos50' },
|
|
628
|
+
{ 'id': 'q24.22', 'start': 116800001, 'end': 118100000, 'type': 'gneg' },
|
|
629
|
+
{ 'id': 'q24.23', 'start': 118100001, 'end': 120700000, 'type': 'gpos50' },
|
|
630
|
+
{ 'id': 'q24.31', 'start': 120700001, 'end': 125900000, 'type': 'gneg' },
|
|
631
|
+
{ 'id': 'q24.32', 'start': 125900001, 'end': 129300000, 'type': 'gpos50' },
|
|
632
|
+
{ 'id': 'q24.33', 'start': 129300001, 'end': 133851895, 'type': 'gneg' }
|
|
633
|
+
]
|
|
634
|
+
},
|
|
635
|
+
'13': {
|
|
636
|
+
'size' : 115169878,
|
|
637
|
+
'bands' : [
|
|
638
|
+
{ 'id': 'p11.1', 'start': 16300001, 'end': 17900000, 'type': 'acen' },
|
|
639
|
+
{ 'id': 'p11.2', 'start': 10000001, 'end': 16300000, 'type': 'gvar' },
|
|
640
|
+
{ 'id': 'p12', 'start': 4500001, 'end': 10000000, 'type': 'stalk' },
|
|
641
|
+
{ 'id': 'p13', 'start': 1, 'end': 4500000, 'type': 'gvar' },
|
|
642
|
+
{ 'id': 'q11', 'start': 17900001, 'end': 19500000, 'type': 'acen' },
|
|
643
|
+
{ 'id': 'q12.11', 'start': 19500001, 'end': 23300000, 'type': 'gneg' },
|
|
644
|
+
{ 'id': 'q12.12', 'start': 23300001, 'end': 25500000, 'type': 'gpos25' },
|
|
645
|
+
{ 'id': 'q12.13', 'start': 25500001, 'end': 27800000, 'type': 'gneg' },
|
|
646
|
+
{ 'id': 'q12.2', 'start': 27800001, 'end': 28900000, 'type': 'gpos25' },
|
|
647
|
+
{ 'id': 'q12.3', 'start': 28900001, 'end': 32200000, 'type': 'gneg' },
|
|
648
|
+
{ 'id': 'q13.1', 'start': 32200001, 'end': 34000000, 'type': 'gpos50' },
|
|
649
|
+
{ 'id': 'q13.2', 'start': 34000001, 'end': 35500000, 'type': 'gneg' },
|
|
650
|
+
{ 'id': 'q13.3', 'start': 35500001, 'end': 40100000, 'type': 'gpos75' },
|
|
651
|
+
{ 'id': 'q14.11', 'start': 40100001, 'end': 45200000, 'type': 'gneg' },
|
|
652
|
+
{ 'id': 'q14.12', 'start': 45200001, 'end': 45800000, 'type': 'gpos25' },
|
|
653
|
+
{ 'id': 'q14.13', 'start': 45800001, 'end': 47300000, 'type': 'gneg' },
|
|
654
|
+
{ 'id': 'q14.2', 'start': 47300001, 'end': 50900000, 'type': 'gpos50' },
|
|
655
|
+
{ 'id': 'q14.3', 'start': 50900001, 'end': 55300000, 'type': 'gneg' },
|
|
656
|
+
{ 'id': 'q21.1', 'start': 55300001, 'end': 59600000, 'type': 'gpos100' },
|
|
657
|
+
{ 'id': 'q21.2', 'start': 59600001, 'end': 62300000, 'type': 'gneg' },
|
|
658
|
+
{ 'id': 'q21.31', 'start': 62300001, 'end': 65700000, 'type': 'gpos75' },
|
|
659
|
+
{ 'id': 'q21.32', 'start': 65700001, 'end': 68600000, 'type': 'gneg' },
|
|
660
|
+
{ 'id': 'q21.33', 'start': 68600001, 'end': 73300000, 'type': 'gpos100' },
|
|
661
|
+
{ 'id': 'q22.1', 'start': 73300001, 'end': 75400000, 'type': 'gneg' },
|
|
662
|
+
{ 'id': 'q22.2', 'start': 75400001, 'end': 77200000, 'type': 'gpos50' },
|
|
663
|
+
{ 'id': 'q22.3', 'start': 77200001, 'end': 79000000, 'type': 'gneg' },
|
|
664
|
+
{ 'id': 'q31.1', 'start': 79000001, 'end': 87700000, 'type': 'gpos100' },
|
|
665
|
+
{ 'id': 'q31.2', 'start': 87700001, 'end': 90000000, 'type': 'gneg' },
|
|
666
|
+
{ 'id': 'q31.3', 'start': 90000001, 'end': 95000000, 'type': 'gpos100' },
|
|
667
|
+
{ 'id': 'q32.1', 'start': 95000001, 'end': 98200000, 'type': 'gneg' },
|
|
668
|
+
{ 'id': 'q32.2', 'start': 98200001, 'end': 99300000, 'type': 'gpos25' },
|
|
669
|
+
{ 'id': 'q32.3', 'start': 99300001, 'end': 101700000, 'type': 'gneg' },
|
|
670
|
+
{ 'id': 'q33.1', 'start': 101700001, 'end': 104800000, 'type': 'gpos100' },
|
|
671
|
+
{ 'id': 'q33.2', 'start': 104800001, 'end': 107000000, 'type': 'gneg' },
|
|
672
|
+
{ 'id': 'q33.3', 'start': 107000001, 'end': 110300000, 'type': 'gpos100' },
|
|
673
|
+
{ 'id': 'q34', 'start': 110300001, 'end': 115169878, 'type': 'gneg' }
|
|
674
|
+
]
|
|
675
|
+
},
|
|
676
|
+
'14': {
|
|
677
|
+
'size' : 107349540,
|
|
678
|
+
'bands' : [
|
|
679
|
+
{ 'id': 'p11.1', 'start': 16100001, 'end': 17600000, 'type': 'acen' },
|
|
680
|
+
{ 'id': 'p11.2', 'start': 8100001, 'end': 16100000, 'type': 'gvar' },
|
|
681
|
+
{ 'id': 'p12', 'start': 3700001, 'end': 8100000, 'type': 'stalk' },
|
|
682
|
+
{ 'id': 'p13', 'start': 1, 'end': 3700000, 'type': 'gvar' },
|
|
683
|
+
{ 'id': 'q11.1', 'start': 17600001, 'end': 19100000, 'type': 'acen' },
|
|
684
|
+
{ 'id': 'q11.2', 'start': 19100001, 'end': 24600000, 'type': 'gneg' },
|
|
685
|
+
{ 'id': 'q12', 'start': 24600001, 'end': 33300000, 'type': 'gpos100' },
|
|
686
|
+
{ 'id': 'q13.1', 'start': 33300001, 'end': 35300000, 'type': 'gneg' },
|
|
687
|
+
{ 'id': 'q13.2', 'start': 35300001, 'end': 36600000, 'type': 'gpos50' },
|
|
688
|
+
{ 'id': 'q13.3', 'start': 36600001, 'end': 37800000, 'type': 'gneg' },
|
|
689
|
+
{ 'id': 'q21.1', 'start': 37800001, 'end': 43500000, 'type': 'gpos100' },
|
|
690
|
+
{ 'id': 'q21.2', 'start': 43500001, 'end': 47200000, 'type': 'gneg' },
|
|
691
|
+
{ 'id': 'q21.3', 'start': 47200001, 'end': 50900000, 'type': 'gpos100' },
|
|
692
|
+
{ 'id': 'q22.1', 'start': 50900001, 'end': 54100000, 'type': 'gneg' },
|
|
693
|
+
{ 'id': 'q22.2', 'start': 54100001, 'end': 55500000, 'type': 'gpos25' },
|
|
694
|
+
{ 'id': 'q22.3', 'start': 55500001, 'end': 58100000, 'type': 'gneg' },
|
|
695
|
+
{ 'id': 'q23.1', 'start': 58100001, 'end': 62100000, 'type': 'gpos75' },
|
|
696
|
+
{ 'id': 'q23.2', 'start': 62100001, 'end': 64800000, 'type': 'gneg' },
|
|
697
|
+
{ 'id': 'q23.3', 'start': 64800001, 'end': 67900000, 'type': 'gpos50' },
|
|
698
|
+
{ 'id': 'q24.1', 'start': 67900001, 'end': 70200000, 'type': 'gneg' },
|
|
699
|
+
{ 'id': 'q24.2', 'start': 70200001, 'end': 73800000, 'type': 'gpos50' },
|
|
700
|
+
{ 'id': 'q24.3', 'start': 73800001, 'end': 79300000, 'type': 'gneg' },
|
|
701
|
+
{ 'id': 'q31.1', 'start': 79300001, 'end': 83600000, 'type': 'gpos100' },
|
|
702
|
+
{ 'id': 'q31.2', 'start': 83600001, 'end': 84900000, 'type': 'gneg' },
|
|
703
|
+
{ 'id': 'q31.3', 'start': 84900001, 'end': 89800000, 'type': 'gpos100' },
|
|
704
|
+
{ 'id': 'q32.11', 'start': 89800001, 'end': 91900000, 'type': 'gneg' },
|
|
705
|
+
{ 'id': 'q32.12', 'start': 91900001, 'end': 94700000, 'type': 'gpos25' },
|
|
706
|
+
{ 'id': 'q32.13', 'start': 94700001, 'end': 96300000, 'type': 'gneg' },
|
|
707
|
+
{ 'id': 'q32.2', 'start': 96300001, 'end': 101400000, 'type': 'gpos50' },
|
|
708
|
+
{ 'id': 'q32.31', 'start': 101400001, 'end': 103200000, 'type': 'gneg' },
|
|
709
|
+
{ 'id': 'q32.32', 'start': 103200001, 'end': 104000000, 'type': 'gpos50' },
|
|
710
|
+
{ 'id': 'q32.33', 'start': 104000001, 'end': 107349540, 'type': 'gneg' }
|
|
711
|
+
]
|
|
712
|
+
},
|
|
713
|
+
'15': {
|
|
714
|
+
'size' : 102531392,
|
|
715
|
+
'bands' : [
|
|
716
|
+
{ 'id': 'p11.1', 'start': 15800001, 'end': 19000000, 'type': 'acen' },
|
|
717
|
+
{ 'id': 'p11.2', 'start': 8700001, 'end': 15800000, 'type': 'gvar' },
|
|
718
|
+
{ 'id': 'p12', 'start': 3900001, 'end': 8700000, 'type': 'stalk' },
|
|
719
|
+
{ 'id': 'p13', 'start': 1, 'end': 3900000, 'type': 'gvar' },
|
|
720
|
+
{ 'id': 'q11.1', 'start': 19000001, 'end': 20700000, 'type': 'acen' },
|
|
721
|
+
{ 'id': 'q11.2', 'start': 20700001, 'end': 25700000, 'type': 'gneg' },
|
|
722
|
+
{ 'id': 'q12', 'start': 25700001, 'end': 28100000, 'type': 'gpos50' },
|
|
723
|
+
{ 'id': 'q13.1', 'start': 28100001, 'end': 30300000, 'type': 'gneg' },
|
|
724
|
+
{ 'id': 'q13.2', 'start': 30300001, 'end': 31200000, 'type': 'gpos50' },
|
|
725
|
+
{ 'id': 'q13.3', 'start': 31200001, 'end': 33600000, 'type': 'gneg' },
|
|
726
|
+
{ 'id': 'q14', 'start': 33600001, 'end': 40100000, 'type': 'gpos75' },
|
|
727
|
+
{ 'id': 'q15.1', 'start': 40100001, 'end': 42800000, 'type': 'gneg' },
|
|
728
|
+
{ 'id': 'q15.2', 'start': 42800001, 'end': 43600000, 'type': 'gpos25' },
|
|
729
|
+
{ 'id': 'q15.3', 'start': 43600001, 'end': 44800000, 'type': 'gneg' },
|
|
730
|
+
{ 'id': 'q21.1', 'start': 44800001, 'end': 49500000, 'type': 'gpos75' },
|
|
731
|
+
{ 'id': 'q21.2', 'start': 49500001, 'end': 52900000, 'type': 'gneg' },
|
|
732
|
+
{ 'id': 'q21.3', 'start': 52900001, 'end': 59100000, 'type': 'gpos75' },
|
|
733
|
+
{ 'id': 'q22.1', 'start': 59100001, 'end': 59300000, 'type': 'gneg' },
|
|
734
|
+
{ 'id': 'q22.2', 'start': 59300001, 'end': 63700000, 'type': 'gpos25' },
|
|
735
|
+
{ 'id': 'q22.31', 'start': 63700001, 'end': 67200000, 'type': 'gneg' },
|
|
736
|
+
{ 'id': 'q22.32', 'start': 67200001, 'end': 67300000, 'type': 'gpos25' },
|
|
737
|
+
{ 'id': 'q22.33', 'start': 67300001, 'end': 67500000, 'type': 'gneg' },
|
|
738
|
+
{ 'id': 'q23', 'start': 67500001, 'end': 72700000, 'type': 'gpos25' },
|
|
739
|
+
{ 'id': 'q24.1', 'start': 72700001, 'end': 75200000, 'type': 'gneg' },
|
|
740
|
+
{ 'id': 'q24.2', 'start': 75200001, 'end': 76600000, 'type': 'gpos25' },
|
|
741
|
+
{ 'id': 'q24.3', 'start': 76600001, 'end': 78300000, 'type': 'gneg' },
|
|
742
|
+
{ 'id': 'q25.1', 'start': 78300001, 'end': 81700000, 'type': 'gpos50' },
|
|
743
|
+
{ 'id': 'q25.2', 'start': 81700001, 'end': 85200000, 'type': 'gneg' },
|
|
744
|
+
{ 'id': 'q25.3', 'start': 85200001, 'end': 89100000, 'type': 'gpos50' },
|
|
745
|
+
{ 'id': 'q26.1', 'start': 89100001, 'end': 94300000, 'type': 'gneg' },
|
|
746
|
+
{ 'id': 'q26.2', 'start': 94300001, 'end': 98500000, 'type': 'gpos50' },
|
|
747
|
+
{ 'id': 'q26.3', 'start': 98500001, 'end': 102531392, 'type': 'gneg' }
|
|
748
|
+
]
|
|
749
|
+
},
|
|
750
|
+
'16': {
|
|
751
|
+
'size' : 90354753,
|
|
752
|
+
'bands' : [
|
|
753
|
+
{ 'id': 'p11.1', 'start': 34600001, 'end': 36600000, 'type': 'acen' },
|
|
754
|
+
{ 'id': 'p11.2', 'start': 28100001, 'end': 34600000, 'type': 'gneg' },
|
|
755
|
+
{ 'id': 'p12.1', 'start': 24200001, 'end': 28100000, 'type': 'gpos50' },
|
|
756
|
+
{ 'id': 'p12.2', 'start': 21200001, 'end': 24200000, 'type': 'gneg' },
|
|
757
|
+
{ 'id': 'p12.3', 'start': 16800001, 'end': 21200000, 'type': 'gpos50' },
|
|
758
|
+
{ 'id': 'p13.11', 'start': 14800001, 'end': 16800000, 'type': 'gneg' },
|
|
759
|
+
{ 'id': 'p13.12', 'start': 12600001, 'end': 14800000, 'type': 'gpos50' },
|
|
760
|
+
{ 'id': 'p13.13', 'start': 10500001, 'end': 12600000, 'type': 'gneg' },
|
|
761
|
+
{ 'id': 'p13.2', 'start': 7900001, 'end': 10500000, 'type': 'gpos50' },
|
|
762
|
+
{ 'id': 'p13.3', 'start': 1, 'end': 7900000, 'type': 'gneg' },
|
|
763
|
+
{ 'id': 'q11.1', 'start': 36600001, 'end': 38600000, 'type': 'acen' },
|
|
764
|
+
{ 'id': 'q11.2', 'start': 38600001, 'end': 47000000, 'type': 'gvar' },
|
|
765
|
+
{ 'id': 'q12.1', 'start': 47000001, 'end': 52600000, 'type': 'gneg' },
|
|
766
|
+
{ 'id': 'q12.2', 'start': 52600001, 'end': 56700000, 'type': 'gpos50' },
|
|
767
|
+
{ 'id': 'q13', 'start': 56700001, 'end': 57400000, 'type': 'gneg' },
|
|
768
|
+
{ 'id': 'q21', 'start': 57400001, 'end': 66700000, 'type': 'gpos100' },
|
|
769
|
+
{ 'id': 'q22.1', 'start': 66700001, 'end': 70800000, 'type': 'gneg' },
|
|
770
|
+
{ 'id': 'q22.2', 'start': 70800001, 'end': 72900000, 'type': 'gpos50' },
|
|
771
|
+
{ 'id': 'q22.3', 'start': 72900001, 'end': 74100000, 'type': 'gneg' },
|
|
772
|
+
{ 'id': 'q23.1', 'start': 74100001, 'end': 79200000, 'type': 'gpos75' },
|
|
773
|
+
{ 'id': 'q23.2', 'start': 79200001, 'end': 81700000, 'type': 'gneg' },
|
|
774
|
+
{ 'id': 'q23.3', 'start': 81700001, 'end': 84200000, 'type': 'gpos50' },
|
|
775
|
+
{ 'id': 'q24.1', 'start': 84200001, 'end': 87100000, 'type': 'gneg' },
|
|
776
|
+
{ 'id': 'q24.2', 'start': 87100001, 'end': 88700000, 'type': 'gpos25' },
|
|
777
|
+
{ 'id': 'q24.3', 'start': 88700001, 'end': 90354753, 'type': 'gneg' }
|
|
778
|
+
]
|
|
779
|
+
},
|
|
780
|
+
'17': {
|
|
781
|
+
'size' : 81195210,
|
|
782
|
+
'bands' : [
|
|
783
|
+
{ 'id': 'p11.1', 'start': 22200001, 'end': 24000000, 'type': 'acen' },
|
|
784
|
+
{ 'id': 'p11.2', 'start': 16000001, 'end': 22200000, 'type': 'gneg' },
|
|
785
|
+
{ 'id': 'p12', 'start': 10700001, 'end': 16000000, 'type': 'gpos75' },
|
|
786
|
+
{ 'id': 'p13.1', 'start': 6500001, 'end': 10700000, 'type': 'gneg' },
|
|
787
|
+
{ 'id': 'p13.2', 'start': 3300001, 'end': 6500000, 'type': 'gpos50' },
|
|
788
|
+
{ 'id': 'p13.3', 'start': 1, 'end': 3300000, 'type': 'gneg' },
|
|
789
|
+
{ 'id': 'q11.1', 'start': 24000001, 'end': 25800000, 'type': 'acen' },
|
|
790
|
+
{ 'id': 'q11.2', 'start': 25800001, 'end': 31800000, 'type': 'gneg' },
|
|
791
|
+
{ 'id': 'q12', 'start': 31800001, 'end': 38100000, 'type': 'gpos50' },
|
|
792
|
+
{ 'id': 'q21.1', 'start': 38100001, 'end': 38400000, 'type': 'gneg' },
|
|
793
|
+
{ 'id': 'q21.2', 'start': 38400001, 'end': 40900000, 'type': 'gpos25' },
|
|
794
|
+
{ 'id': 'q21.31', 'start': 40900001, 'end': 44900000, 'type': 'gneg' },
|
|
795
|
+
{ 'id': 'q21.32', 'start': 44900001, 'end': 47400000, 'type': 'gpos25' },
|
|
796
|
+
{ 'id': 'q21.33', 'start': 47400001, 'end': 50200000, 'type': 'gneg' },
|
|
797
|
+
{ 'id': 'q22', 'start': 50200001, 'end': 57600000, 'type': 'gpos75' },
|
|
798
|
+
{ 'id': 'q23.1', 'start': 57600001, 'end': 58300000, 'type': 'gneg' },
|
|
799
|
+
{ 'id': 'q23.2', 'start': 58300001, 'end': 61100000, 'type': 'gpos75' },
|
|
800
|
+
{ 'id': 'q23.3', 'start': 61100001, 'end': 62600000, 'type': 'gneg' },
|
|
801
|
+
{ 'id': 'q24.1', 'start': 62600001, 'end': 64200000, 'type': 'gpos50' },
|
|
802
|
+
{ 'id': 'q24.2', 'start': 64200001, 'end': 67100000, 'type': 'gneg' },
|
|
803
|
+
{ 'id': 'q24.3', 'start': 67100001, 'end': 70900000, 'type': 'gpos75' },
|
|
804
|
+
{ 'id': 'q25.1', 'start': 70900001, 'end': 74800000, 'type': 'gneg' },
|
|
805
|
+
{ 'id': 'q25.2', 'start': 74800001, 'end': 75300000, 'type': 'gpos25' },
|
|
806
|
+
{ 'id': 'q25.3', 'start': 75300001, 'end': 81195210, 'type': 'gneg' }
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
'18': {
|
|
810
|
+
'size' : 78077248,
|
|
811
|
+
'bands' : [
|
|
812
|
+
{ 'id': 'p11.1', 'start': 15400001, 'end': 17200000, 'type': 'acen' },
|
|
813
|
+
{ 'id': 'p11.21', 'start': 10900001, 'end': 15400000, 'type': 'gneg' },
|
|
814
|
+
{ 'id': 'p11.22', 'start': 8500001, 'end': 10900000, 'type': 'gpos25' },
|
|
815
|
+
{ 'id': 'p11.23', 'start': 7100001, 'end': 8500000, 'type': 'gneg' },
|
|
816
|
+
{ 'id': 'p11.31', 'start': 2900001, 'end': 7100000, 'type': 'gpos50' },
|
|
817
|
+
{ 'id': 'p11.32', 'start': 1, 'end': 2900000, 'type': 'gneg' },
|
|
818
|
+
{ 'id': 'q11.1', 'start': 17200001, 'end': 19000000, 'type': 'acen' },
|
|
819
|
+
{ 'id': 'q11.2', 'start': 19000001, 'end': 25000000, 'type': 'gneg' },
|
|
820
|
+
{ 'id': 'q12.1', 'start': 25000001, 'end': 32700000, 'type': 'gpos100' },
|
|
821
|
+
{ 'id': 'q12.2', 'start': 32700001, 'end': 37200000, 'type': 'gneg' },
|
|
822
|
+
{ 'id': 'q12.3', 'start': 37200001, 'end': 43500000, 'type': 'gpos75' },
|
|
823
|
+
{ 'id': 'q21.1', 'start': 43500001, 'end': 48200000, 'type': 'gneg' },
|
|
824
|
+
{ 'id': 'q21.2', 'start': 48200001, 'end': 53800000, 'type': 'gpos75' },
|
|
825
|
+
{ 'id': 'q21.31', 'start': 53800001, 'end': 56200000, 'type': 'gneg' },
|
|
826
|
+
{ 'id': 'q21.32', 'start': 56200001, 'end': 59000000, 'type': 'gpos50' },
|
|
827
|
+
{ 'id': 'q21.33', 'start': 59000001, 'end': 61600000, 'type': 'gneg' },
|
|
828
|
+
{ 'id': 'q22.1', 'start': 61600001, 'end': 66800000, 'type': 'gpos100' },
|
|
829
|
+
{ 'id': 'q22.2', 'start': 66800001, 'end': 68700000, 'type': 'gneg' },
|
|
830
|
+
{ 'id': 'q22.3', 'start': 68700001, 'end': 73100000, 'type': 'gpos25' },
|
|
831
|
+
{ 'id': 'q23', 'start': 73100001, 'end': 78077248, 'type': 'gneg' }
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
'19': {
|
|
835
|
+
'size' : 59128983,
|
|
836
|
+
'bands' : [
|
|
837
|
+
{ 'id': 'p11', 'start': 24400001, 'end': 26500000, 'type': 'acen' },
|
|
838
|
+
{ 'id': 'p12', 'start': 20000001, 'end': 24400000, 'type': 'gvar' },
|
|
839
|
+
{ 'id': 'p13.11', 'start': 16300001, 'end': 20000000, 'type': 'gneg' },
|
|
840
|
+
{ 'id': 'p13.12', 'start': 14000001, 'end': 16300000, 'type': 'gpos25' },
|
|
841
|
+
{ 'id': 'p13.13', 'start': 13900001, 'end': 14000000, 'type': 'gneg' },
|
|
842
|
+
{ 'id': 'p13.2', 'start': 6900001, 'end': 13900000, 'type': 'gpos25' },
|
|
843
|
+
{ 'id': 'p13.3', 'start': 1, 'end': 6900000, 'type': 'gneg' },
|
|
844
|
+
{ 'id': 'q11', 'start': 26500001, 'end': 28600000, 'type': 'acen' },
|
|
845
|
+
{ 'id': 'q12', 'start': 28600001, 'end': 32400000, 'type': 'gvar' },
|
|
846
|
+
{ 'id': 'q13.11', 'start': 32400001, 'end': 35500000, 'type': 'gneg' },
|
|
847
|
+
{ 'id': 'q13.12', 'start': 35500001, 'end': 38300000, 'type': 'gpos25' },
|
|
848
|
+
{ 'id': 'q13.13', 'start': 38300001, 'end': 38700000, 'type': 'gneg' },
|
|
849
|
+
{ 'id': 'q13.2', 'start': 38700001, 'end': 43400000, 'type': 'gpos25' },
|
|
850
|
+
{ 'id': 'q13.31', 'start': 43400001, 'end': 45200000, 'type': 'gneg' },
|
|
851
|
+
{ 'id': 'q13.32', 'start': 45200001, 'end': 48000000, 'type': 'gpos25' },
|
|
852
|
+
{ 'id': 'q13.33', 'start': 48000001, 'end': 51400000, 'type': 'gneg' },
|
|
853
|
+
{ 'id': 'q13.41', 'start': 51400001, 'end': 53600000, 'type': 'gpos25' },
|
|
854
|
+
{ 'id': 'q13.42', 'start': 53600001, 'end': 56300000, 'type': 'gneg' },
|
|
855
|
+
{ 'id': 'q13.43', 'start': 56300001, 'end': 59128983, 'type': 'gpos25' }
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
'20': {
|
|
859
|
+
'size' : 63025520,
|
|
860
|
+
'bands' : [
|
|
861
|
+
{ 'id': 'p11.1', 'start': 25600001, 'end': 27500000, 'type': 'acen' },
|
|
862
|
+
{ 'id': 'p11.21', 'start': 22300001, 'end': 25600000, 'type': 'gneg' },
|
|
863
|
+
{ 'id': 'p11.22', 'start': 21300001, 'end': 22300000, 'type': 'gpos25' },
|
|
864
|
+
{ 'id': 'p11.23', 'start': 17900001, 'end': 21300000, 'type': 'gneg' },
|
|
865
|
+
{ 'id': 'p12.1', 'start': 12100001, 'end': 17900000, 'type': 'gpos75' },
|
|
866
|
+
{ 'id': 'p12.2', 'start': 9200001, 'end': 12100000, 'type': 'gneg' },
|
|
867
|
+
{ 'id': 'p12.3', 'start': 5100001, 'end': 9200000, 'type': 'gpos75' },
|
|
868
|
+
{ 'id': 'p13', 'start': 1, 'end': 5100000, 'type': 'gneg' },
|
|
869
|
+
{ 'id': 'q11.1', 'start': 27500001, 'end': 29400000, 'type': 'acen' },
|
|
870
|
+
{ 'id': 'q11.21', 'start': 29400001, 'end': 32100000, 'type': 'gneg' },
|
|
871
|
+
{ 'id': 'q11.22', 'start': 32100001, 'end': 34400000, 'type': 'gpos25' },
|
|
872
|
+
{ 'id': 'q11.23', 'start': 34400001, 'end': 37600000, 'type': 'gneg' },
|
|
873
|
+
{ 'id': 'q12', 'start': 37600001, 'end': 41700000, 'type': 'gpos75' },
|
|
874
|
+
{ 'id': 'q13.11', 'start': 41700001, 'end': 42100000, 'type': 'gneg' },
|
|
875
|
+
{ 'id': 'q13.12', 'start': 42100001, 'end': 46400000, 'type': 'gpos25' },
|
|
876
|
+
{ 'id': 'q13.13', 'start': 46400001, 'end': 49800000, 'type': 'gneg' },
|
|
877
|
+
{ 'id': 'q13.2', 'start': 49800001, 'end': 55000000, 'type': 'gpos75' },
|
|
878
|
+
{ 'id': 'q13.31', 'start': 55000001, 'end': 56500000, 'type': 'gneg' },
|
|
879
|
+
{ 'id': 'q13.32', 'start': 56500001, 'end': 58400000, 'type': 'gpos50' },
|
|
880
|
+
{ 'id': 'q13.33', 'start': 58400001, 'end': 63025520, 'type': 'gneg' }
|
|
881
|
+
]
|
|
882
|
+
},
|
|
883
|
+
'21': {
|
|
884
|
+
'size' : 48129895,
|
|
885
|
+
'bands' : [
|
|
886
|
+
{ 'id': 'p11.1', 'start': 10900001, 'end': 13200000, 'type': 'acen' },
|
|
887
|
+
{ 'id': 'p11.2', 'start': 6800001, 'end': 10900000, 'type': 'gvar' },
|
|
888
|
+
{ 'id': 'p12', 'start': 2800001, 'end': 6800000, 'type': 'stalk' },
|
|
889
|
+
{ 'id': 'p13', 'start': 1, 'end': 2800000, 'type': 'gvar' },
|
|
890
|
+
{ 'id': 'q11.1', 'start': 13200001, 'end': 14300000, 'type': 'acen' },
|
|
891
|
+
{ 'id': 'q11.2', 'start': 14300001, 'end': 16400000, 'type': 'gneg' },
|
|
892
|
+
{ 'id': 'q21.1', 'start': 16400001, 'end': 24000000, 'type': 'gpos100' },
|
|
893
|
+
{ 'id': 'q21.2', 'start': 24000001, 'end': 26800000, 'type': 'gneg' },
|
|
894
|
+
{ 'id': 'q21.3', 'start': 26800001, 'end': 31500000, 'type': 'gpos75' },
|
|
895
|
+
{ 'id': 'q22.11', 'start': 31500001, 'end': 35800000, 'type': 'gneg' },
|
|
896
|
+
{ 'id': 'q22.12', 'start': 35800001, 'end': 37800000, 'type': 'gpos50' },
|
|
897
|
+
{ 'id': 'q22.13', 'start': 37800001, 'end': 39700000, 'type': 'gneg' },
|
|
898
|
+
{ 'id': 'q22.2', 'start': 39700001, 'end': 42600000, 'type': 'gpos50' },
|
|
899
|
+
{ 'id': 'q22.3', 'start': 42600001, 'end': 48129895, 'type': 'gneg' }
|
|
900
|
+
]
|
|
901
|
+
},
|
|
902
|
+
'22': {
|
|
903
|
+
'size' : 51304566,
|
|
904
|
+
'bands' : [
|
|
905
|
+
{ 'id': 'p11.1', 'start': 12200001, 'end': 14700000, 'type': 'acen' },
|
|
906
|
+
{ 'id': 'p11.2', 'start': 8300001, 'end': 12200000, 'type': 'gvar' },
|
|
907
|
+
{ 'id': 'p12', 'start': 3800001, 'end': 8300000, 'type': 'stalk' },
|
|
908
|
+
{ 'id': 'p13', 'start': 1, 'end': 3800000, 'type': 'gvar' },
|
|
909
|
+
{ 'id': 'q11.1', 'start': 14700001, 'end': 17900000, 'type': 'acen' },
|
|
910
|
+
{ 'id': 'q11.21', 'start': 17900001, 'end': 22200000, 'type': 'gneg' },
|
|
911
|
+
{ 'id': 'q11.22', 'start': 22200001, 'end': 23500000, 'type': 'gpos25' },
|
|
912
|
+
{ 'id': 'q11.23', 'start': 23500001, 'end': 25900000, 'type': 'gneg' },
|
|
913
|
+
{ 'id': 'q12.1', 'start': 25900001, 'end': 29600000, 'type': 'gpos50' },
|
|
914
|
+
{ 'id': 'q12.2', 'start': 29600001, 'end': 32200000, 'type': 'gneg' },
|
|
915
|
+
{ 'id': 'q12.3', 'start': 32200001, 'end': 37600000, 'type': 'gpos50' },
|
|
916
|
+
{ 'id': 'q13.1', 'start': 37600001, 'end': 41000000, 'type': 'gneg' },
|
|
917
|
+
{ 'id': 'q13.2', 'start': 41000001, 'end': 44200000, 'type': 'gpos50' },
|
|
918
|
+
{ 'id': 'q13.31', 'start': 44200001, 'end': 48400000, 'type': 'gneg' },
|
|
919
|
+
{ 'id': 'q13.32', 'start': 48400001, 'end': 49400000, 'type': 'gpos50' },
|
|
920
|
+
{ 'id': 'q13.33', 'start': 49400001, 'end': 51304566, 'type': 'gneg' }
|
|
921
|
+
]
|
|
922
|
+
},
|
|
923
|
+
'X': {
|
|
924
|
+
'size' : 155270560,
|
|
925
|
+
'bands' : [
|
|
926
|
+
{ 'id': 'p11.1', 'start': 58100001, 'end': 60600000, 'type': 'acen' },
|
|
927
|
+
{ 'id': 'p11.21', 'start': 54800001, 'end': 58100000, 'type': 'gneg' },
|
|
928
|
+
{ 'id': 'p11.22', 'start': 49800001, 'end': 54800000, 'type': 'gpos25' },
|
|
929
|
+
{ 'id': 'p11.23', 'start': 46400001, 'end': 49800000, 'type': 'gneg' },
|
|
930
|
+
{ 'id': 'p11.3', 'start': 42400001, 'end': 46400000, 'type': 'gpos75' },
|
|
931
|
+
{ 'id': 'p11.4', 'start': 37600001, 'end': 42400000, 'type': 'gneg' },
|
|
932
|
+
{ 'id': 'p21.1', 'start': 31500001, 'end': 37600000, 'type': 'gpos100' },
|
|
933
|
+
{ 'id': 'p21.2', 'start': 29300001, 'end': 31500000, 'type': 'gneg' },
|
|
934
|
+
{ 'id': 'p21.3', 'start': 24900001, 'end': 29300000, 'type': 'gpos100' },
|
|
935
|
+
{ 'id': 'p22.11', 'start': 21900001, 'end': 24900000, 'type': 'gneg' },
|
|
936
|
+
{ 'id': 'p22.12', 'start': 19300001, 'end': 21900000, 'type': 'gpos50' },
|
|
937
|
+
{ 'id': 'p22.13', 'start': 17100001, 'end': 19300000, 'type': 'gneg' },
|
|
938
|
+
{ 'id': 'p22.2', 'start': 9500001, 'end': 17100000, 'type': 'gpos50' },
|
|
939
|
+
{ 'id': 'p22.31', 'start': 6000001, 'end': 9500000, 'type': 'gneg' },
|
|
940
|
+
{ 'id': 'p22.32', 'start': 4300001, 'end': 6000000, 'type': 'gpos50' },
|
|
941
|
+
{ 'id': 'p22.33', 'start': 1, 'end': 4300000, 'type': 'gneg' },
|
|
942
|
+
{ 'id': 'q11.1', 'start': 60600001, 'end': 63000000, 'type': 'acen' },
|
|
943
|
+
{ 'id': 'q11.2', 'start': 63000001, 'end': 64600000, 'type': 'gneg' },
|
|
944
|
+
{ 'id': 'q12', 'start': 64600001, 'end': 67800000, 'type': 'gpos50' },
|
|
945
|
+
{ 'id': 'q13.1', 'start': 67800001, 'end': 71800000, 'type': 'gneg' },
|
|
946
|
+
{ 'id': 'q13.2', 'start': 71800001, 'end': 73900000, 'type': 'gpos50' },
|
|
947
|
+
{ 'id': 'q13.3', 'start': 73900001, 'end': 76000000, 'type': 'gneg' },
|
|
948
|
+
{ 'id': 'q21.1', 'start': 76000001, 'end': 84600000, 'type': 'gpos100' },
|
|
949
|
+
{ 'id': 'q21.2', 'start': 84600001, 'end': 86200000, 'type': 'gneg' },
|
|
950
|
+
{ 'id': 'q21.31', 'start': 86200001, 'end': 91800000, 'type': 'gpos100' },
|
|
951
|
+
{ 'id': 'q21.32', 'start': 91800001, 'end': 93500000, 'type': 'gneg' },
|
|
952
|
+
{ 'id': 'q21.33', 'start': 93500001, 'end': 98300000, 'type': 'gpos75' },
|
|
953
|
+
{ 'id': 'q22.1', 'start': 98300001, 'end': 102600000, 'type': 'gneg' },
|
|
954
|
+
{ 'id': 'q22.2', 'start': 102600001, 'end': 103700000, 'type': 'gpos50' },
|
|
955
|
+
{ 'id': 'q22.3', 'start': 103700001, 'end': 108700000, 'type': 'gneg' },
|
|
956
|
+
{ 'id': 'q23', 'start': 108700001, 'end': 116500000, 'type': 'gpos75' },
|
|
957
|
+
{ 'id': 'q24', 'start': 116500001, 'end': 120900000, 'type': 'gneg' },
|
|
958
|
+
{ 'id': 'q25', 'start': 120900001, 'end': 128700000, 'type': 'gpos100' },
|
|
959
|
+
{ 'id': 'q26.1', 'start': 128700001, 'end': 130400000, 'type': 'gneg' },
|
|
960
|
+
{ 'id': 'q26.2', 'start': 130400001, 'end': 133600000, 'type': 'gpos25' },
|
|
961
|
+
{ 'id': 'q26.3', 'start': 133600001, 'end': 138000000, 'type': 'gneg' },
|
|
962
|
+
{ 'id': 'q27.1', 'start': 138000001, 'end': 140300000, 'type': 'gpos75' },
|
|
963
|
+
{ 'id': 'q27.2', 'start': 140300001, 'end': 142100000, 'type': 'gneg' },
|
|
964
|
+
{ 'id': 'q27.3', 'start': 142100001, 'end': 147100000, 'type': 'gpos100' },
|
|
965
|
+
{ 'id': 'q28', 'start': 147100001, 'end': 155270560, 'type': 'gneg' }
|
|
966
|
+
]
|
|
967
|
+
},
|
|
968
|
+
'Y': {
|
|
969
|
+
'size' : 59373566,
|
|
970
|
+
'bands' : [
|
|
971
|
+
{ 'id': 'p11.1', 'start': 11600001, 'end': 12500000, 'type': 'acen' },
|
|
972
|
+
{ 'id': 'p11.2', 'start': 3000001, 'end': 11600000, 'type': 'gneg' },
|
|
973
|
+
{ 'id': 'p11.31', 'start': 2500001, 'end': 3000000, 'type': 'gpos50' },
|
|
974
|
+
{ 'id': 'p11.32', 'start': 1, 'end': 2500000, 'type': 'gneg' },
|
|
975
|
+
{ 'id': 'q11.1', 'start': 12500001, 'end': 13400000, 'type': 'acen' },
|
|
976
|
+
{ 'id': 'q11.21', 'start': 13400001, 'end': 15100000, 'type': 'gneg' },
|
|
977
|
+
{ 'id': 'q11.221', 'start': 15100001, 'end': 19800000, 'type': 'gpos50' },
|
|
978
|
+
{ 'id': 'q11.222', 'start': 19800001, 'end': 22100000, 'type': 'gneg' },
|
|
979
|
+
{ 'id': 'q11.223', 'start': 22100001, 'end': 26200000, 'type': 'gpos50' },
|
|
980
|
+
{ 'id': 'q11.23', 'start': 26200001, 'end': 28800000, 'type': 'gneg' },
|
|
981
|
+
{ 'id': 'q12', 'start': 28800001, 'end': 59373566, 'type': 'gvar' }
|
|
982
|
+
]
|
|
983
|
+
},
|
|
984
|
+
'MT': {
|
|
985
|
+
'size' : 16569,
|
|
986
|
+
'bands' : [
|
|
987
|
+
{ 'start': 1, 'end': 16569 }
|
|
988
|
+
]
|
|
989
|
+
}
|
|
990
|
+
};
|