tpierrot commited on
Commit
eec7921
1 Parent(s): eb5fd19

first draft

Browse files
Files changed (3) hide show
  1. app.py +127 -0
  2. assets/logo.png +0 -0
  3. data/benchmark.csv +125 -0
app.py ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import functools
2
+
3
+ import gradio as gr
4
+ import pandas as pd
5
+ import numpy as np
6
+ from typing import List
7
+
8
+ _ORIGINAL_DF = pd.read_csv('./data/benchmark.csv')
9
+ _METRICS = {'MCC', 'F1', 'ACC'}
10
+ _AGGREGATION_METHODS = {'mean', 'max', 'min', 'median'}
11
+ _DATASETS = set(_ORIGINAL_DF['Dataset'])
12
+
13
+ _BIBTEX = """@article{DallaTorre2023TheNT,
14
+ title={The Nucleotide Transformer: Building and Evaluating Robust Foundation Models for Human Genomics},
15
+ author={Hugo Dalla-Torre and Liam Gonzalez and Javier Mendoza Revilla and Nicolas Lopez Carranza and Adam Henryk Grzywaczewski and Francesco Oteri and Christian Dallago and Evan Trop and Hassan Sirelkhatim and Guillaume Richard and Marcin J. Skwark and Karim Beguir and Marie Lopez and Thomas Pierrot},
16
+ journal={bioRxiv},
17
+ year={2023},
18
+ url={https://api.semanticscholar.org/CorpusID:255943445}
19
+ }
20
+ """
21
+ _LAST_UPDATED = 'Aug 28, 2023'
22
+
23
+ banner_url = "./assets/logo.png"
24
+ _BANNER = f'<div style="display: flex; justify-content: space-around;"><img src="{banner_url}" alt="Banner" style="width: 40vw; min-width: 300px; max-width: 600px;"> </div>'
25
+
26
+ _INTRODUCTION_TEXT = "The 🤗 Nucleotide Transformer Leaderboard aims to track, rank and evaluate DNA foundational models on a set of curated downstream tasks with a standardized evaluation protocole."
27
+
28
+
29
+ def retrieve_array_from_text(text):
30
+ return np.fromstring(text.replace('[', '').replace(']', ''), dtype=float, sep=',')
31
+
32
+
33
+ def format_number(x):
34
+ return float(f'{x:.3}')
35
+
36
+
37
+ def get_dataset(tasks: List[str], target_metric: str = 'MCC', aggregation_method: str = 'mean'):
38
+
39
+ aggr_fn = getattr(np, aggregation_method)
40
+ scores = _ORIGINAL_DF[target_metric].apply(retrieve_array_from_text).apply(aggr_fn)
41
+ scores = scores.apply(format_number)
42
+ df = _ORIGINAL_DF.drop(columns=list(_METRICS))
43
+ df['Score'] = scores
44
+ df = df.pivot(index='Model', columns='Dataset', values='Score')
45
+ df = df[tasks]
46
+ df['All Tasks'] = df.agg('mean', axis='columns').apply(format_number)
47
+ columns = list(df.columns.values)
48
+ columns.sort()
49
+ df = df[columns]
50
+ df.reset_index(inplace=True)
51
+ df = df.rename(columns={'index': 'Model'})
52
+ df = df.sort_values(by=['All Tasks'], ascending=False)
53
+
54
+ leaderboard_table = gr.components.Dataframe.update(
55
+ value=df,
56
+ # datatype=TYPES,
57
+ max_rows=None,
58
+ interactive=False,
59
+ visible=True,
60
+ )
61
+ return leaderboard_table
62
+
63
+
64
+ with gr.Blocks() as demo:
65
+ with gr.Row():
66
+ gr.Image(banner_url, height=160, scale=1)
67
+ gr.Textbox(_INTRODUCTION_TEXT, scale=5)
68
+
69
+ with gr.Row():
70
+ metric_choice = gr.Dropdown(
71
+ choices=list(_METRICS),
72
+ value="MCC",
73
+ label="Metric displayed.",
74
+ )
75
+ aggr_choice = gr.Dropdown(
76
+ choices=list(_AGGREGATION_METHODS),
77
+ value="mean",
78
+ label="Aggregation used over 10-folds.",
79
+ )
80
+
81
+ with gr.Row():
82
+ selected_tasks = gr.CheckboxGroup(
83
+ choices=list(_DATASETS),
84
+ value=list(_DATASETS),
85
+ label="Tasks",
86
+ info="Downstream tasks."
87
+ )
88
+ with gr.Tabs(elem_classes="tab-buttons") as tabs:
89
+ with gr.TabItem("🏅 Leaderboard", elem_id="od-benchmark-tab-table", id=0):
90
+ dataframe = gr.components.Dataframe(elem_id="leaderboard-table",)
91
+
92
+ with gr.TabItem("📈 Metrics", elem_id="od-benchmark-tab-table", id=1):
93
+ gr.Markdown('Hey hey hey', elem_classes="markdown-text")
94
+
95
+ # with gr.TabItem("✉️✨ Request a model here!", elem_id="od-benchmark-tab-table",
96
+ # id=2):
97
+ # with gr.Column():
98
+ # gr.Markdown("# ✉️✨ Request results for a new model here!",
99
+ # elem_classes="markdown-text")
100
+ # with gr.Column():
101
+ # gr.Markdown("Select a dataset:", elem_classes="markdown-text")
102
+ # with gr.Column():
103
+ # model_name_textbox = gr.Textbox(
104
+ # label="Model name (user_name/model_name)")
105
+ # chb_coco2017 = gr.Checkbox(label="COCO validation 2017 dataset",
106
+ # visible=False, value=True,
107
+ # interactive=False)
108
+ # with gr.Column():
109
+ # mdw_submission_result = gr.Markdown()
110
+ # btn_submitt = gr.Button(value="🚀 Request")
111
+
112
+ gr.Markdown(f"Last updated on **{_LAST_UPDATED}**", elem_classes="markdown-text")
113
+
114
+ with gr.Row():
115
+ with gr.Accordion("📙 Citation", open=False):
116
+ gr.Textbox(
117
+ value=_BIBTEX, lines=7,
118
+ label="Copy the BibTeX snippet to cite this source",
119
+ elem_id="citation-button",
120
+ ).style(show_copy_button=True)
121
+
122
+ selected_tasks.change(get_dataset, inputs=[selected_tasks, metric_choice, aggr_choice], outputs=dataframe)
123
+ metric_choice.change(get_dataset, inputs=[selected_tasks, metric_choice, aggr_choice], outputs=dataframe)
124
+ aggr_choice.change(get_dataset, inputs=[selected_tasks, metric_choice, aggr_choice], outputs=dataframe)
125
+ demo.load(fn=get_dataset, inputs=[selected_tasks, metric_choice, aggr_choice], outputs=dataframe)
126
+
127
+ demo.launch()
assets/logo.png ADDED
data/benchmark.csv ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Dataset,Model,MCC,F1,ACC
2
+ H3,DNABERT-1,"[0.7482815508350361, 0.7596683085405548, 0.7660969858447341, 0.7689077565801784, 0.7673008977336083, 0.7597957786257659, 0.7633501430617131, 0.7218073101900512, 0.7622792762786613, 0.7664427056201113]","[0.8732730140417825, 0.8794300328827183, 0.8828391589301577, 0.8843396323383185, 0.8835491421331787, 0.8796714021177261, 0.880602904040404, 0.8588902383809929, 0.8807840047276667, 0.8830125562650173]","[0.8736631274223328, 0.8796791434288025, 0.8830214142799377, 0.884358286857605, 0.8836898803710938, 0.8796791434288025, 0.8810160756111145, 0.8596256971359253, 0.8810160756111145, 0.8830214142799377]"
3
+ promoter_all,DNABERT-2,"[0.942971328310832, 0.9443154441811433, 0.9422633380369486, 0.9439208581301246, 0.9450230928153951, 0.9479738385448059, 0.9452704860460633, 0.9403212484352065, 0.9400711074334984, 0.937036586896011]","[0.9714517048352591, 0.9721275122940127, 0.9711143497325996, 0.9719594306559163, 0.9724648954953812, 0.9739864746103335, 0.9726351320118622, 0.9700994666990601, 0.9699291341647567, 0.9684085844386766]","[0.9714527130126953, 0.9721283912658691, 0.9711148738861084, 0.9719594717025757, 0.972466230392456, 0.9739865064620972, 0.9726351499557495, 0.9701013565063477, 0.9699324369430542, 0.9684121608734131]"
4
+ H3K9ac,DNABERT-2,"[0.5344027571413028, 0.5421810214039127, 0.5525069250087552, 0.5230910315246928, 0.5470623476976447, 0.546623540561198, 0.5332566783854417, 0.5492637147331741, 0.5441396668344004, 0.5469794572721413]","[0.7627188923569993, 0.7701550506208662, 0.7762236805855545, 0.7612916023060107, 0.7720750491460242, 0.7731645993965807, 0.7663299663299663, 0.7696261072333728, 0.769833967371391, 0.7718082807913815]","[0.7629683017730713, 0.77485591173172, 0.7791786789894104, 0.7651296854019165, 0.7730547189712524, 0.7752161026000977, 0.7701728940010071, 0.7698126435279846, 0.7705331444740295, 0.7726945281028748]"
5
+ enhancers,DNABERT-2,"[0.5300265019876657, 0.530424509479351, 0.502037385505508, 0.45665264819882306, 0.5353279888705554, 0.53, 0.5197580741108034, 0.4950556968990279, 0.5550069376300808, 0.5030527316443673]","[0.7649941248531213, 0.764905962384954, 0.7494927227635964, 0.7270069062243678, 0.767428775062363, 0.765, 0.7563900521752234, 0.7474857960760293, 0.7774986093663085, 0.7492414554025928]","[0.7649999856948853, 0.7649999856948853, 0.75, 0.7274999618530273, 0.7674999833106995, 0.7649999856948853, 0.7574999928474426, 0.7475000023841858, 0.7774999737739563, 0.75]"
6
+ promoter_tata,DNABERT-2,"[0.924929152226695, 0.9119134996017575, 0.9020979020979021, 0.9119933319783221, 0.9025866340988751, 0.9086866248128785, 0.9282583367319251, 0.9184388198135769, 0.8859031012806026, 0.9030598486418306]","[0.9624620129242165, 0.9559542063574034, 0.951048951048951, 0.9559737939249553, 0.9511317960651575, 0.9543331603528801, 0.9641189117058343, 0.9592168577383364, 0.942928992124942, 0.9511669203450026]","[0.9626623392105103, 0.9561688303947449, 0.951298713684082, 0.9561688303947449, 0.951298713684082, 0.9545454382896423, 0.9642857313156128, 0.9594155550003052, 0.9431818127632141, 0.951298713684082]"
7
+ H3K4me2,DNABERT-2,"[0.35721353834799807, 0.3246037981397263, 0.3324692839025147, 0.3274332701274811, 0.3337975902080194, 0.32035591932649876, 0.34226417543937215, 0.3268680972860338, 0.33779551349306935, 0.36079003567941575]","[0.6785181610711811, 0.65959746489474, 0.6643472485059154, 0.6636408984564366, 0.6649174898440713, 0.6599316206535575, 0.6701657201377897, 0.6617570512464604, 0.6661338523741951, 0.6798982814048143]","[0.6906005144119263, 0.6798303127288818, 0.670039176940918, 0.6736292243003845, 0.6834203600883484, 0.6690600514411926, 0.6860313415527344, 0.667754590511322, 0.6860313415527344, 0.6938642263412476]"
8
+ H3K79me3,DNABERT-2,"[0.6117759785529087, 0.604249802789691, 0.6196825585801692, 0.5989352893481307, 0.5949286486709787, 0.6182307315523825, 0.6229857830703471, 0.6207796890888668, 0.6244469343842699, 0.6097613473021399]","[0.8056615067349997, 0.8017275405953681, 0.8089450849796341, 0.7994652163577772, 0.7947827349256497, 0.8089169896159523, 0.8110067197610753, 0.8089543852255716, 0.8115871747366495, 0.8047739151408263]","[0.8069444894790649, 0.8020833730697632, 0.8107638955116272, 0.8003472685813904, 0.7947916984558105, 0.8093750476837158, 0.8125, 0.8111111521720886, 0.8131944537162781, 0.8059027791023254]"
9
+ promoter_no_tata,DNABERT-2,"[0.9459995508809259, 0.9395958834035045, 0.9384624835461015, 0.9414869735569276, 0.9479940294223118, 0.9427165041026788, 0.9466540649772862, 0.943844142274305, 0.948327579772992, 0.9416690415029093]","[0.9729955769367432, 0.9697841069879958, 0.9692212543944716, 0.9707282189946287, 0.9739357251833259, 0.9712911670923462, 0.9731757389448441, 0.9718579644320853, 0.9741259504109008, 0.9707219798972195]","[0.9729984998703003, 0.9697884917259216, 0.9692220687866211, 0.9707326292991638, 0.9739425778388977, 0.9712991118431091, 0.9731873273849487, 0.9718655347824097, 0.9741314053535461, 0.9707326292991638]"
10
+ enhancers_types,DNABERT-2,"[0.43801608774836776, 0.39480051938096566, 0.4462164296395021, 0.4312622270999757, 0.414066842442896, 0.43467170659923565, 0.3990018581867164, 0.4433902755086645, 0.4130127978947361, 0.41077423711145067]","[0.5389506172839507, 0.47044068641565184, 0.5515226895823911, 0.4851593555549507, 0.508013139098606, 0.4753282584022817, 0.48337454126151697, 0.5128506307083976, 0.5047920017607712, 0.5332482315292552]","[0.6349999904632568, 0.5924999713897705, 0.6424999833106995, 0.6200000047683716, 0.6274999976158142, 0.6100000143051147, 0.6074999570846558, 0.625, 0.625, 0.6150000095367432]"
11
+ H3K14ac,DNABERT-2,"[0.5084164726509145, 0.5237832284623603, 0.5093886112122986, 0.501960340287159, 0.5284948468889121, 0.5164396036218774, 0.5301144900131555, 0.5226802144552319, 0.507813245571197, 0.5145272208871023]","[0.7513342429261288, 0.760903008201224, 0.754689744998905, 0.7496117488620481, 0.7597390676092636, 0.7553020937923157, 0.7632842748398323, 0.7612755884162556, 0.7537198505637146, 0.7543778874435569]","[0.7527239918708801, 0.7633172273635864, 0.7590799331665039, 0.7518160343170166, 0.7605932354927063, 0.7566586136817932, 0.7651332020759583, 0.7651332020759583, 0.7593826055526733, 0.7557506561279297]"
12
+ H3K4me1,DNABERT-2,"[0.51249964601378, 0.5188190594812178, 0.49611859666701086, 0.5127816098911838, 0.5195626855253265, 0.5242783557643198, 0.5003138146873604, 0.5094205479723316, 0.5118343855737911, 0.5086587515380008]","[0.7545690893297465, 0.7562586555875146, 0.7475591410826705, 0.7563815494849977, 0.7583381854994958, 0.7598382070491866, 0.7499092359537535, 0.7546855289241304, 0.7545655326268823, 0.7524633593866452]","[0.7591540217399597, 0.7619949579238892, 0.7509469985961914, 0.7585227489471436, 0.7626262903213501, 0.7648358345031738, 0.7528409361839294, 0.7569444179534912, 0.7588383555412292, 0.7572600841522217]"
13
+ splice_sites_all,DNABERT-2,"[0.9077191290446589, 0.9092377967798532, 0.9073885967607539, 0.9111764959523436, 0.9020013530030443, 0.9119105413072893, 0.9052997141265223, 0.9009547966433649, 0.9137222138057713, 0.9143449254871993]","[0.938146589687066, 0.9395277825953691, 0.9382584413196825, 0.9408004373031983, 0.9346720886788661, 0.9411024515098708, 0.9364755513540123, 0.933950653711554, 0.9425834627607914, 0.9429525797767894]","[0.937666654586792, 0.9393333196640015, 0.937999963760376, 0.9403333067893982, 0.934666633605957, 0.940666675567627, 0.9356666803359985, 0.9336666464805603, 0.9423333406448364, 0.9426666498184204]"
14
+ H3K4me3,DNABERT-2,"[0.37870896710333624, 0.3513947194651316, 0.36847622700841975, 0.35147105024900405, 0.34082595578847935, 0.35421783670077633, 0.3663167295979321, 0.34062305198888404, 0.3681662635259586, 0.30199180355693145]","[0.6831459310614767, 0.6738575561059538, 0.6832038091209844, 0.6576294020770173, 0.6650170308032185, 0.6768115848740637, 0.6758962955108079, 0.6702751539943513, 0.6801736138411489, 0.6505518847384464]","[0.6834238767623901, 0.6739130020141602, 0.6834238767623901, 0.6608695387840271, 0.6652173399925232, 0.677445650100708, 0.6763586401939392, 0.6720108389854431, 0.6864129900932312, 0.6510869264602661]"
15
+ H4,DNABERT-2,"[0.7834511539671549, 0.7969540336190496, 0.8054146755924768, 0.7889943678042721, 0.78686063388446, 0.7963037703537222, 0.8011850086926835, 0.8108143024350066, 0.7981421606591401, 0.7921997638935698]","[0.8902474580754904, 0.8981629729301508, 0.9027003702197451, 0.8944541098190031, 0.8933049794170684, 0.8980271197778276, 0.9002540461850255, 0.9050906618464669, 0.8985931675273342, 0.8959603658536586]","[0.8907967209815979, 0.8990384936332703, 0.9038462042808533, 0.8956044316291809, 0.8949176073074341, 0.8990384936332703, 0.901098906993866, 0.905906617641449, 0.9004120826721191, 0.8969780206680298]"
16
+ H3,DNABERT-2,"[0.7822219167778175, 0.8022541397589973, 0.7878534391942859, 0.772607332598298, 0.778300249683909, 0.7889369936963635, 0.771848222871967, 0.8046997389033943, 0.7712512400013819, 0.7940211327403449]","[0.8908613231466749, 0.9010481190883527, 0.8934899955446198, 0.886246529069934, 0.889021366658146, 0.8943661468276952, 0.8854371410338224, 0.9023498694516972, 0.8856252238283466, 0.896952738098646]","[0.8910427689552307, 0.9010695219039917, 0.89371657371521, 0.8863636255264282, 0.8890374302864075, 0.894385039806366, 0.885695219039917, 0.9024064540863037, 0.885695219039917, 0.8970588445663452]"
17
+ splice_sites_acceptors,DNABERT-2,"[0.9476835107682485, 0.9530926717027766, 0.9485635204447879, 0.9503787652354947, 0.9504380355446014, 0.9413826101940671, 0.9494543665340462, 0.9531462054476831, 0.9494567370043685, 0.9530926717027766]","[0.9738219170158355, 0.9765336079007648, 0.9742767997350945, 0.9751796512240027, 0.9751743124610571, 0.9706673862022268, 0.9747271832670231, 0.9765341240006353, 0.9747275744287759, 0.9765336079007648]","[0.9738267064094543, 0.9765343070030212, 0.9742779731750488, 0.9751805067062378, 0.9751805067062378, 0.970667839050293, 0.9747292399406433, 0.9765343070030212, 0.9747292399406433, 0.9765343070030212]"
18
+ splice_sites_donors,DNABERT-2,"[0.9242896811445462, 0.9271975593941848, 0.9237088903458133, 0.9327089196479408, 0.9299183835497035, 0.9247476984720868, 0.921589848986675, 0.9206871855228632, 0.9270329063083603, 0.9270086604319921]","[0.9621350286158002, 0.963501705029838, 0.961674237681005, 0.9662385993248053, 0.9648706177508861, 0.9621284077948835, 0.9607661294015102, 0.960309814217613, 0.9635036192521739, 0.9635035281032823]","[0.9621350169181824, 0.9635036587715149, 0.9616788029670715, 0.9662408828735352, 0.9648722410202026, 0.9621350169181824, 0.9607664346694946, 0.9603102207183838, 0.9635036587715149, 0.9635036587715149]"
19
+ H3K36me3,DNABERT-2,"[0.5943429781542233, 0.5925592232057009, 0.6015556658173651, 0.5902379612844608, 0.5891911002297509, 0.591553216371508, 0.5911339573355944, 0.5813343992070527, 0.587332780344715, 0.5902698256653347]","[0.7967753692300723, 0.795688847235239, 0.7993155006085506, 0.7943678447286975, 0.7933919599331508, 0.7944975198114657, 0.7955659193086455, 0.7888218703002992, 0.7930901193107343, 0.7947082958829333]","[0.7990251779556274, 0.7981650829315186, 0.802465558052063, 0.79701828956604, 0.7964448928833008, 0.7975916862487793, 0.79701828956604, 0.7924311757087708, 0.7955848574638367, 0.79701828956604]"
20
+ H4ac,DNABERT-2,"[0.4563943361006197, 0.4432396911396166, 0.46486593491956746, 0.4648100718957779, 0.4797893449107489, 0.4732194007675216, 0.4613135108287475, 0.4390503190616824, 0.48016949842513346, 0.47001227109010235]","[0.7275925171430349, 0.721577494900877, 0.7324099986296109, 0.732386646240343, 0.739894093262902, 0.7366097003837608, 0.728390621636799, 0.7162187052842678, 0.7361969048388852, 0.7300446240534566]","[0.7282863855361938, 0.7230046987533569, 0.73386150598526, 0.73386150598526, 0.7414906024932861, 0.7382628917694092, 0.7332746386528015, 0.7162559032440186, 0.7362089157104492, 0.7300469875335693]"
21
+ promoter_all,DNABERT-1,"[0.9199273440457051, 0.923987804722402, 0.9183111632168381, 0.9187066140505373, 0.9211028227989269, 0.9227721140215734, 0.9249134924848688, 0.9240371635354929, 0.9246846222319547, 0.9218205710330223]","[0.9596136637963675, 0.9619932161314829, 0.9591201099017996, 0.9591113126471921, 0.9602933939161613, 0.9613146965030819, 0.9623259631206178, 0.961992201039342, 0.9619788957181301, 0.9606304325420688]","[0.9596284031867981, 0.9619932770729065, 0.9591216444969177, 0.9591216444969177, 0.9603040814399719, 0.9613175988197327, 0.9623311161994934, 0.9619932770729065, 0.9619932770729065, 0.9606419205665588]"
22
+ promoter_no_tata,DNABERT-1,"[0.922232099230832, 0.9208812171702945, 0.9235905522476868, 0.9191953885858108, 0.9278667696881249, 0.9213455951250683, 0.9265709365719514, 0.9267847044486933, 0.9291166437369167, 0.9248621314379043]","[0.9610963052729893, 0.9601311460436678, 0.9614518633540372, 0.9595866062525398, 0.9639317005178994, 0.9605189101808987, 0.9631658257958847, 0.9633614267670014, 0.9644917066668492, 0.9624233445734849]","[0.9611027240753174, 0.9601585865020752, 0.9614803791046143, 0.9595921635627747, 0.9639350175857544, 0.9605362415313721, 0.9631797671318054, 0.9633685946464539, 0.9645015001296997, 0.9624244570732117]"
23
+ splice_sites_all,DNABERT-1,"[0.9550269003032098, 0.9640392050581915, 0.9615206729167038, 0.9595878063015987, 0.9615434306924515, 0.9620155527104877, 0.9670011281686409, 0.9610453303738158, 0.9635049781219138, 0.9675069338245387]","[0.96998322719311, 0.9760262452495695, 0.9743470176072074, 0.9729891344177997, 0.9742998428209425, 0.9746473893625559, 0.9779999768167927, 0.9739621129126367, 0.9756603707924806, 0.9783461645849519]","[0.9699999690055847, 0.9760000109672546, 0.9743333458900452, 0.9729999899864197, 0.9743333458900452, 0.9746666550636292, 0.9779999852180481, 0.9739999771118164, 0.9756666421890259, 0.9783332943916321]"
24
+ H3K9ac,DNABERT-1,"[0.507932060215433, 0.5053006485112878, 0.5051033242452079, 0.48427328952245763, 0.5055010598031565, 0.5071614868933668, 0.491426238274888, 0.5053842114344815, 0.5127832819298186, 0.5177745101413741]","[0.752037387831038, 0.7511381860844992, 0.751566394951217, 0.7420652846694819, 0.751643765584734, 0.7534659130205157, 0.7457068088937417, 0.7482945089136559, 0.752534514304724, 0.7583989863508631]","[0.7528818249702454, 0.7521613836288452, 0.7528818249702454, 0.744596540927887, 0.7528818249702454, 0.7557636499404907, 0.7485590577125549, 0.7485590577125549, 0.7528818249702454, 0.7600864171981812]"
25
+ enhancers,DNABERT-1,"[0.48709005243838643, 0.5050063126183618, 0.5000250018751562, 0.5226196639347902, 0.49093318777767375, 0.46589540733502577, 0.49009802940980346, 0.5120781332156182, 0.47715805587650706, 0.502037385505508]","[0.7381078290649946, 0.752498453115332, 0.7499937498437461, 0.7593984962406015, 0.7409440451713103, 0.7243141048744555, 0.744974497449745, 0.7545028683083244, 0.7369063950538403, 0.7494927227635964]","[0.7400000095367432, 0.7524999976158142, 0.75, 0.7599999904632568, 0.7425000071525574, 0.7274999618530273, 0.7450000047683716, 0.7549999952316284, 0.737500011920929, 0.75]"
26
+ promoter_tata,DNABERT-1,"[0.9118724261050175, 0.9154450330366374, 0.8772980234004566, 0.9250384473271819, 0.9119828689822204, 0.909103505103199, 0.9119134996017575, 0.9118724261050175, 0.9119134996017575, 0.9020714707014937]","[0.9559336673458194, 0.9576309746780525, 0.9376385336743394, 0.962496194824962, 0.9558663146302955, 0.9543896763274804, 0.9559542063574034, 0.9559336673458194, 0.9559542063574034, 0.9510256002544124]","[0.9561688303947449, 0.9577922224998474, 0.9383116960525513, 0.9626623392105103, 0.9561688303947449, 0.9545454382896423, 0.9561688303947449, 0.9561688303947449, 0.9561688303947449, 0.951298713684082]"
27
+ H3K4me2,DNABERT-1,"[0.3037750989202725, 0.2752116226544665, 0.2872161780852423, 0.2887239108913033, 0.26459649301868937, 0.30361016131002116, 0.2803401512811352, 0.2813679953347511, 0.2645241357876819, 0.2831149651520615]","[0.6517106445837213, 0.6210270457780597, 0.636939153090851, 0.6441299354893938, 0.6223586606714901, 0.6456945099657978, 0.6229501459142512, 0.637408197473267, 0.6319782061423114, 0.6412112154022456]","[0.6654700040817261, 0.66253262758255, 0.665143609046936, 0.6537206172943115, 0.6563315987586975, 0.6723237633705139, 0.664817214012146, 0.6602480411529541, 0.647193193435669, 0.6563315987586975]"
28
+ H3K79me3,DNABERT-1,"[0.5830936811287463, 0.5851272101260074, 0.5769489899161777, 0.5744047143053098, 0.578006938519225, 0.5788959118655835, 0.579515153652005, 0.5563429690113164, 0.5803600682791981, 0.5752064685862034]","[0.7909112500123128, 0.7908366278558105, 0.7874279867970719, 0.7871885779574465, 0.787387090574637, 0.7891974624163853, 0.7897574809250409, 0.7763318284805488, 0.7893424729257101, 0.7875386996904026]","[0.7927083373069763, 0.7934027910232544, 0.7895833253860474, 0.788194477558136, 0.7899305820465088, 0.7906250357627869, 0.7906250357627869, 0.7763888835906982, 0.7913194894790649, 0.788194477558136]"
29
+ enhancers_types,DNABERT-1,"[0.424068771201973, 0.3543955220119661, 0.3876549623157582, 0.3492693019487111, 0.35898278916324133, 0.40990641435386266, 0.3066267778158089, 0.40715785049919023, 0.37578185395550584, 0.34463874139302086]","[0.5562088048145591, 0.515854422273266, 0.5033273881555675, 0.5021775727757388, 0.5171860344617049, 0.5133950160185138, 0.4812367849967469, 0.5051394327519582, 0.4769851678673027, 0.48708791208791213]","[0.6225000023841858, 0.5824999809265137, 0.612500011920929, 0.5799999833106995, 0.5899999737739563, 0.6049999594688416, 0.5424999594688416, 0.6100000143051147, 0.5924999713897705, 0.5824999809265137]"
30
+ H3K14ac,DNABERT-1,"[0.4041594771561146, 0.40240001243350165, 0.3890707546149346, 0.42247575923610725, 0.4138725513153958, 0.42007144920476386, 0.39233786022024125, 0.3960051937024646, 0.38746070447167763, 0.40891828643437256]","[0.6948482329622585, 0.6891564196715556, 0.6797520418872727, 0.7108637314884818, 0.699954098194639, 0.7097923897902427, 0.6764223974294785, 0.6977869323760032, 0.6842072176845395, 0.7039948212189056]","[0.6952179670333862, 0.6891646981239319, 0.6797820925712585, 0.7145884037017822, 0.7003632187843323, 0.7167070508003235, 0.6767554879188538, 0.7049031853675842, 0.6843220591545105, 0.7076271772384644]"
31
+ H3K4me1,DNABERT-1,"[0.3947961724528792, 0.39804189144574254, 0.3985785154294864, 0.3906139733470199, 0.3930464819211321, 0.39813064447896096, 0.38836777489006213, 0.4020640602282514, 0.4029412890623823, 0.3861583837734115]","[0.6944239536932499, 0.6959494229214144, 0.6932837850086105, 0.6847401516465894, 0.6960696276852938, 0.6858766233766234, 0.6936238018537331, 0.6989949652638607, 0.6943590997962196, 0.6796147427372954]","[0.7017045617103577, 0.7032828330993652, 0.7032828330993652, 0.6985479593276978, 0.7001262903213501, 0.7013888955116272, 0.6979166865348816, 0.7051767706871033, 0.7051767706871033, 0.6957070827484131]"
32
+ H3K4me3,DNABERT-1,"[0.25578820240363276, 0.2400677039435899, 0.25985949066651143, 0.24854538852383995, 0.26353126676984434, 0.24211039601661874, 0.2655857409970531, 0.2638865690621636, 0.2705057832539669, 0.25343135855180027]","[0.6278884540772182, 0.6129090671843502, 0.6084376750994447, 0.6238644771380756, 0.6314197447029608, 0.6201164990060217, 0.623582837988145, 0.6220186749666519, 0.6352460913712814, 0.6266910781085371]","[0.6296195387840271, 0.6135869026184082, 0.6138586401939392, 0.6244564652442932, 0.6320651769638062, 0.6203804016113281, 0.6247282028198242, 0.6233695149421692, 0.636956512928009, 0.6279891133308411]"
33
+ H4,DNABERT-1,"[0.7994575471620469, 0.785494467691856, 0.7752875367877041, 0.780176123076984, 0.7898918168806269, 0.787306385442159, 0.7780233782716247, 0.782549262912396, 0.7900979189770633, 0.7825277298470777]","[0.8996659743690361, 0.8926623774509804, 0.8866678690423078, 0.8898212279176287, 0.8949420154048983, 0.8936493121779003, 0.888548206504556, 0.8911200688549155, 0.894712604306416, 0.8901583069014027]","[0.901098906993866, 0.8942307829856873, 0.8873626589775085, 0.8907967209815979, 0.8962912559509277, 0.8949176073074341, 0.8894230723381042, 0.8921703696250916, 0.8956044316291809, 0.8907967209815979]"
34
+ H3K36me3,DNABERT-1,"[0.4715406623735915, 0.4786433999615429, 0.4773928712059333, 0.47687086409375556, 0.47910363702198544, 0.47192995521469405, 0.4640429516380648, 0.45750912947778266, 0.4849818001453434, 0.4599581828802237]","[0.7357546909834599, 0.739286224508906, 0.7379178210910204, 0.732386222174799, 0.7372627554267219, 0.7359529716091002, 0.7315842907843448, 0.7287443159395527, 0.7424522365651083, 0.729038145818421]","[0.7373852729797363, 0.7413990497589111, 0.7413990497589111, 0.7402522563934326, 0.74225914478302, 0.7379586696624756, 0.7325114607810974, 0.7307912707328796, 0.744552731513977, 0.7296444773674011]"
35
+ H4ac,DNABERT-1,"[0.37087307323816543, 0.3495042638406123, 0.3655321192990301, 0.3419031558167297, 0.34525311449626167, 0.37141123487209426, 0.35904969314812146, 0.3595077167129511, 0.3539821710486821, 0.35972265237872986]","[0.6792004849700368, 0.6656227464929352, 0.6777173824100124, 0.6586415473948027, 0.6652798105430243, 0.6807401784594953, 0.6794681961070118, 0.6776392687014821, 0.6748269557542736, 0.677656596507719]","[0.6792840361595154, 0.6660798192024231, 0.6863263249397278, 0.6737089157104492, 0.6654929518699646, 0.6807512044906616, 0.6810446381568909, 0.6778169274330139, 0.6807512044906616, 0.6778169274330139]"
36
+ promoter_all,Enformer,"[0.9080618076463504, 0.9122438508487365, 0.9145596472090426, 0.9125437972374141, 0.901689240646073, 0.9037484507883964, 0.9140329428851834, 0.9034971805590942, 0.9105108528247811, 0.9090097778298742]","[0.9538777324417054, 0.9555476565204513, 0.9572627513587586, 0.9562489501166183, 0.9508445931920138, 0.9518572495543329, 0.9569213968733596, 0.9516860129592157, 0.9552355553414857, 0.9543862224475261]","[0.9538851380348206, 0.9555743336677551, 0.9572635293006897, 0.956250011920929, 0.9508446455001831, 0.9518581032752991, 0.9569256901741028, 0.9516891837120056, 0.9552364945411682, 0.9543918967247009]"
37
+ H3K9ac,Enformer,"[0.4164565809525014, 0.4139866333275752, 0.4483237951059654, 0.4072276124495819, 0.38501225719664683, 0.41364725526219864, 0.430927971312328, 0.44186818211671086, 0.4448267808856834, 0.40048795157089423]","[0.7064683147378401, 0.7067673307639811, 0.7064789183009788, 0.7034504860591817, 0.6854941704774853, 0.6799636101264235, 0.714162078745412, 0.7208837839449893, 0.7223485614176942, 0.6974836250447347]","[0.7074927687644958, 0.7114552855491638, 0.7071325182914734, 0.7060518264770508, 0.698847234249115, 0.6822766661643982, 0.7154178619384766, 0.723703145980835, 0.7262247800827026, 0.6981267929077148]"
38
+ enhancers,Enformer,"[0.45752911947682723, 0.46334820431459367, 0.4410451559483045, 0.501229520336821, 0.4808979808557349, 0.4500900270090032, 0.46, 0.4200768513973909, 0.4443764397857273, 0.3928386949623729]","[0.7267468459942719, 0.7290244881573666, 0.71556405786887, 0.7496933743836198, 0.7280795938983093, 0.724972497249725, 0.7299999999999999, 0.7057325561654688, 0.7186212440960709, 0.6938980329185067]","[0.7274999618530273, 0.7299999594688416, 0.7174999713897705, 0.75, 0.7324999570846558, 0.7249999642372131, 0.7299999594688416, 0.7074999809265137, 0.7199999690055847, 0.6949999928474426]"
39
+ promoter_tata,Enformer,"[0.9087649062378153, 0.9154450330366374, 0.9413935199172192, 0.915210528785894, 0.918980516392245, 0.8957445516085168, 0.928654118116171, 0.9282051282051282, 0.9197941804520332, 0.9259971427577152]","[0.9542192211322036, 0.9576309746780525, 0.9706554878048781, 0.9575950774705315, 0.9592841411729869, 0.9478319783197833, 0.964163317114449, 0.9641025641025641, 0.9593254361290493, 0.9625675372197784]","[0.9545454382896423, 0.9577922224998474, 0.9707792401313782, 0.9577922224998474, 0.9594155550003052, 0.948051929473877, 0.9642857313156128, 0.9642857313156128, 0.9594155550003052, 0.9626623392105103]"
40
+ H3K4me2,Enformer,"[0.17549121465472195, 0.19501148579806593, 0.23369802861835262, 0.20915395613011295, 0.24463576872592308, 0.21525136119647875, 0.18826644623223104, 0.2033174077432683, 0.20402670729571976, 0.23920144867406126]","[0.48834460583855, 0.5953218268160443, 0.6139786000697349, 0.5498940551204268, 0.6209375925263175, 0.5759300219154342, 0.5941299760759455, 0.600497127691709, 0.5282252631984141, 0.6149984393568432]","[0.6233681440353394, 0.6187989711761475, 0.6377284526824951, 0.6374021172523499, 0.6406658291816711, 0.6393603086471558, 0.6080287098884583, 0.6207571625709534, 0.6344647407531738, 0.6419712901115417]"
41
+ H3K79me3,Enformer,"[0.47906725565616753, 0.500437495762862, 0.5055676570901685, 0.5135297559851829, 0.49966727557239804, 0.4938278656431365, 0.47151003350622533, 0.513544732613143, 0.4969101970968374, 0.48983080480847463]","[0.71660697214964, 0.7489573721279045, 0.7525650914111564, 0.755718972090183, 0.7382224839198306, 0.7468265717153142, 0.733965682576373, 0.7545858360905383, 0.740449549769669, 0.7440387720873698]","[0.7319444417953491, 0.7517361044883728, 0.753125011920929, 0.7559027671813965, 0.7472222447395325, 0.7482638955116272, 0.7340278029441833, 0.7579861283302307, 0.7475694417953491, 0.7465277910232544]"
42
+ promoter_no_tata,Enformer,"[0.9141920844691064, 0.9216231626702831, 0.9109355900563827, 0.903360973537009, 0.9039058332567819, 0.9074740240775522, 0.9113269994270486, 0.9009821469677135, 0.9117618809487321, 0.9067087101947573]","[0.9569286831781562, 0.9607116224930641, 0.9554283981345955, 0.9516609420343182, 0.9518502454497273, 0.953736161843565, 0.9554111996282935, 0.9503389425076479, 0.9558023723399338, 0.9531473421855565]","[0.9569486379623413, 0.9607250690460205, 0.9554380774497986, 0.9516616463661194, 0.9518504738807678, 0.9537386894226074, 0.9554380774497986, 0.9503398537635803, 0.9558157324790955, 0.9531722068786621]"
43
+ enhancers_types,Enformer,"[0.3515030092122796, 0.31149380640779856, 0.3606618397608573, 0.30369673537912545, 0.27752501889832, 0.3116569977783948, 0.33100675926764556, 0.3615753626040335, 0.25425445267181035, 0.22760250525774595]","[0.5460809301092893, 0.48963317384370014, 0.47867748763444523, 0.49265074488809096, 0.46456138929400964, 0.49922893335781166, 0.5324754601771482, 0.5345425681038997, 0.46490695192376497, 0.4590183665277257]","[0.5949999690055847, 0.5649999976158142, 0.5874999761581421, 0.5399999618530273, 0.5249999761581421, 0.574999988079071, 0.5899999737739563, 0.5924999713897705, 0.4949999749660492, 0.47999998927116394]"
44
+ H3K14ac,Enformer,"[0.2806046465841037, 0.30978786162141364, 0.3149597538867157, 0.32255058251206004, 0.24588195867865628, 0.30529011158277025, 0.25283443590804716, 0.28031323026957056, 0.27977121195522, 0.2883870985043011]","[0.6225355790573182, 0.6476600035192259, 0.6530373126614987, 0.6451368485877094, 0.6174469106259866, 0.6525605222915061, 0.6156084190777709, 0.6325905390793203, 0.6173402382746647, 0.6179342202910694]","[0.6228814125061035, 0.6480024456977844, 0.6540557146072388, 0.6452784538269043, 0.6371065378189087, 0.6601089835166931, 0.6156174540519714, 0.632869303226471, 0.6183414459228516, 0.6195520758628845]"
45
+ H3K4me1,Enformer,"[0.2975444330640108, 0.2743825720697163, 0.3053000592353334, 0.29894122410382096, 0.26555619781664647, 0.3265330114310768, 0.28758342963533046, 0.29345783426704597, 0.2804737019551524, 0.28119360515363984]","[0.637666070516096, 0.6309706696082256, 0.6380811380027283, 0.6282701551601922, 0.5972734093463735, 0.6399851268643062, 0.6056746995510068, 0.642338837970708, 0.6198628150011299, 0.6387628337460578]","[0.6382575631141663, 0.6309974789619446, 0.6578282713890076, 0.653724730014801, 0.6360479593276978, 0.6657196879386902, 0.6448863744735718, 0.6423611044883728, 0.6455176472663879, 0.6461489796638489]"
46
+ splice_sites_all,Enformer,"[0.7763020756292043, 0.7709283606783208, 0.7784303314443123, 0.7754257648007697, 0.7727984950910134, 0.7658491592759948, 0.7902870580510085, 0.7634681533600558, 0.7668241722715625, 0.7715230749837086]","[0.8498730674336836, 0.8467370498172381, 0.8525282639566583, 0.8486446537079574, 0.8469829227208411, 0.8432572732696825, 0.860374041328502, 0.8415051723243111, 0.8431878999624155, 0.8479199038893229]","[0.8503333330154419, 0.8449999690055847, 0.8519999980926514, 0.8496666550636292, 0.8460000157356262, 0.8433333039283752, 0.8600000143051147, 0.8403333425521851, 0.8416666388511658, 0.847000002861023]"
47
+ H3K4me3,Enformer,"[0.1642607719254682, 0.1926868496620601, 0.18698692691104896, 0.17637430071409985, 0.15545308875338554, 0.15620945129433708, 0.1344553454815199, 0.14969008286093394, 0.1206304572726809, 0.14443575560298333]","[0.5771271173295633, 0.5697081367491135, 0.5586389622755517, 0.5731505675733561, 0.5381295147437916, 0.5427106318253396, 0.522687519998679, 0.5485754015962454, 0.4992733105850693, 0.5715778095932422]","[0.5774456262588501, 0.5785325765609741, 0.5717390775680542, 0.5769021511077881, 0.5826086401939392, 0.5570651888847351, 0.543206512928009, 0.5581521391868591, 0.530978262424469, 0.5720108151435852]"
48
+ H4,Enformer,"[0.7291837358341636, 0.7036573342117585, 0.7431731817081374, 0.6930243814100757, 0.7479997449600787, 0.7093241342084523, 0.7555297249814631, 0.7408823145985586, 0.7691288484340489, 0.7265122401625334]","[0.8626743958268339, 0.8473015873015872, 0.8690697058043997, 0.8412599546202785, 0.872349399446007, 0.8540407742847681, 0.8774111700480487, 0.8703584558823529, 0.8827319587628866, 0.8628840168331976]","[0.8660714626312256, 0.8475275039672852, 0.8695055246353149, 0.8468406796455383, 0.8729395866394043, 0.8550824522972107, 0.8784340620040894, 0.8722527623176575, 0.8832417726516724, 0.8640109896659851]"
49
+ H3,Enformer,"[0.7203683763613481, 0.7406287617959155, 0.733087772268728, 0.7023646264830234, 0.7285123648980963, 0.6988886736960941, 0.7352510106442355, 0.7390149779754375, 0.699433201912218, 0.6927838813808884]","[0.8591382575757576, 0.8701256392494223, 0.8659822444390695, 0.8505398759098548, 0.8642465205370453, 0.8456683534621052, 0.8676006779806475, 0.8659507261842849, 0.8495795063472891, 0.845899736299014]","[0.8596256971359253, 0.8703208565711975, 0.866310179233551, 0.8509358167648315, 0.8643048405647278, 0.8469251394271851, 0.8676470518112183, 0.866978645324707, 0.8495989441871643, 0.846256673336029]"
50
+ splice_sites_acceptors,Enformer,"[0.8240193650300167, 0.8330178684981207, 0.798870284715502, 0.8329634175584044, 0.8502824850066767, 0.8387222365114226, 0.8285058864548, 0.8340562337430071, 0.8285377313826009, 0.8254981982026047]","[0.9120005816123737, 0.9165087475802995, 0.8966876952257564, 0.9160515793487081, 0.9250658375052148, 0.9191810197725983, 0.9142529432274, 0.9169376714745404, 0.9142420450249631, 0.911861440604071]","[0.9120035767555237, 0.9165162444114685, 0.8971118927001953, 0.916064977645874, 0.9250902533531189, 0.9192238450050354, 0.9142599105834961, 0.916967511177063, 0.9142599105834961, 0.9120035767555237]"
51
+ splice_sites_donors,Enformer,"[0.8318615901847205, 0.8117173653284836, 0.8016239855500955, 0.8122944078559846, 0.8222158209058602, 0.7881073762946705, 0.7952917807507686, 0.8130008880903549, 0.8193713089314786, 0.8407215500165255]","[0.9155781363361468, 0.9055416112659591, 0.9000188070812096, 0.9059992822211509, 0.9105123494590732, 0.893642201099321, 0.896780172805366, 0.9064776155871195, 0.9096667199488491, 0.9201521189558578]","[0.9156022071838379, 0.9055656790733337, 0.9000912308692932, 0.9060218930244446, 0.9105839133262634, 0.893704354763031, 0.8968977928161621, 0.9064781069755554, 0.9096715450286865, 0.9201642274856567]"
52
+ H3K36me3,Enformer,"[0.3154640065839331, 0.3248859056971187, 0.3458077263550206, 0.3282927519548917, 0.36694652986866805, 0.3249432012538349, 0.35889821178938375, 0.3700229910077293, 0.344957879487064, 0.36098998395965154]","[0.65691040645527, 0.6595862518512965, 0.6299167072994794, 0.6640398994583345, 0.6803966191606006, 0.6490050733653434, 0.6788566557446921, 0.6839769978695798, 0.6671324295850392, 0.6803039259313378]","[0.6616972088813782, 0.6596903204917908, 0.6668577790260315, 0.665710985660553, 0.6875, 0.6502293348312378, 0.6829128265380859, 0.6886467337608337, 0.6671444773674011, 0.6834862232208252]"
53
+ H4ac,Enformer,"[0.2930871544090835, 0.295049020410393, 0.29557655988033, 0.2859442512907942, 0.2952664875803809, 0.25631057784556954, 0.2563290449389297, 0.26445428097003326, 0.2326605114143558, 0.251484137786332]","[0.6438422313915566, 0.6351998291470058, 0.6467543505337986, 0.6383300782804548, 0.6440639132783861, 0.6281539243246222, 0.6268533081094998, 0.6196822812591303, 0.5958569214683577, 0.6179830473622884]","[0.6511150598526001, 0.6364436745643616, 0.6473004817962646, 0.6478873491287231, 0.6440727710723877, 0.6305751204490662, 0.6326290965080261, 0.6373239755630493, 0.621772289276123, 0.6314554214477539]"
54
+ H3,2.5B MS,"[0.7860137897934241, 0.7989501195247347, 0.7936526984693845, 0.7909013284379255, 0.8047363994017181, 0.7564287213549827, 0.8020513077936124, 0.8008024483542832, 0.7843437410556471, 0.7916115745616787]","[0.8929285229897705, 0.8987960594725923, 0.8963899576721609, 0.894774710842364, 0.9023617429119103, 0.8769833608626324, 0.900967566484413, 0.9003686160961915, 0.8917110364019496, 0.8957032842096231]","[0.8930481672286987, 0.8990641832351685, 0.8963903784751892, 0.895053505897522, 0.9024064540863037, 0.8770053386688232, 0.9010695219039917, 0.9004011154174805, 0.8917112350463867, 0.895721971988678]"
55
+ H3,500M HR,"[0.7458200756013046, 0.6973729273777166, 0.7184765935467707, 0.7189823064210074, 0.7074291456565504, 0.7344272482314361, 0.717530671000318, 0.7081143897059112, 0.7242265831982031, 0.7048677551987584]","[0.872903788919414, 0.8477705889973557, 0.8576527278080588, 0.856682745825603, 0.8532975410331556, 0.866971417336381, 0.8560255008058946, 0.8531355021604444, 0.8611828719050776, 0.8494099204234776]","[0.8729946613311768, 0.8482620716094971, 0.8582887649536133, 0.857620358467102, 0.8536096215248108, 0.866978645324707, 0.856951892375946, 0.8536096215248108, 0.8616310358047485, 0.8495989441871643]"
56
+ H3,2.5B 1000G,"[0.7637470252618551, 0.7526995181118223, 0.7485174720125899, 0.763169286130273, 0.7525074914848202, 0.7506524119136783, 0.7662271132754173, 0.7610934435002418, 0.7552638245801119, 0.7392094513161396]","[0.8803086059142167, 0.8763023539470749, 0.874258736006295, 0.8810158301206606, 0.8762439437740769, 0.8749972631410561, 0.882349576755891, 0.8803385575510747, 0.8770044682752458, 0.8689830205540663]","[0.8803476095199585, 0.876336932182312, 0.8743315935134888, 0.8810160756111145, 0.876336932182312, 0.875, 0.8823529481887817, 0.8803476095199585, 0.8770053386688232, 0.8689839839935303]"
57
+ H3,500M 1000G,"[0.7349680455263977, 0.7489181725184444, 0.728426505035469, 0.7466806027512175, 0.7118234901186922, 0.7425369139887708, 0.7360447151458532, 0.7280614591595514, 0.7229302519006111, 0.7541111679020366]","[0.8665477850681664, 0.8729562784377878, 0.8641819220202586, 0.8726484498631679, 0.854282334933556, 0.870984635389321, 0.8672674868794631, 0.8636353887399465, 0.8587166129403638, 0.8769787426503844]","[0.866978645324707, 0.8729946613311768, 0.8643048405647278, 0.8729946613311768, 0.8549465537071228, 0.8709893226623535, 0.8676470518112183, 0.8636363744735718, 0.8596256971359253, 0.8770053386688232]"
58
+ H3K14ac,2.5B MS,"[0.5530511008721951, 0.5478802924456311, 0.5390786019132493, 0.5416440104188097, 0.5292590604940849, 0.5298397803019199, 0.5191686407895209, 0.5348835734132119, 0.5416440519456933, 0.5371633870882813]","[0.7755513722528565, 0.7657768022013747, 0.759564620463498, 0.7673448254437257, 0.7612421183543672, 0.7538712911322536, 0.7495816979986482, 0.7599524449043394, 0.7656482680657581, 0.765419025820737]","[0.7778450846672058, 0.7660412192344666, 0.7596852779388428, 0.7684624791145325, 0.7624092102050781, 0.7539346814155579, 0.7496973872184753, 0.7602905631065369, 0.7663438320159912, 0.7666465044021606]"
59
+ H3K14ac,500M HR,"[0.37200795931352176, 0.3816481368250634, 0.3716279310397525, 0.36412248647868856, 0.37210223334476783, 0.37251009856959594, 0.36877846169535977, 0.38138396319496254, 0.369016901782075, 0.3797552088724992]","[0.6737269007082219, 0.6761197399048975, 0.6760570607553367, 0.6756479829012592, 0.6843617163558549, 0.6857363655781279, 0.6697612448990306, 0.6742267073869843, 0.674271002263086, 0.6808411735723335]","[0.6737288236618042, 0.6761501431465149, 0.6761501431465149, 0.6761501431465149, 0.6867433786392212, 0.6894673705101013, 0.6697942018508911, 0.6743341684341431, 0.6743341684341431, 0.6809927821159363]"
60
+ H3K14ac,500M 1000G,"[0.3717534920279671, 0.3688991545196096, 0.39401054722724915, 0.3941440331469769, 0.38105518663557714, 0.39470934074006564, 0.38030003240677623, 0.3717160274873716, 0.3692980083403713, 0.39305269334411913]","[0.6623338057636499, 0.6759505217929158, 0.6969814765733133, 0.6907593375616632, 0.6895081506256335, 0.6945140243650874, 0.6840574347589241, 0.6746150746169252, 0.6703775034956572, 0.6753828231364127]","[0.6631356477737427, 0.6761501431465149, 0.7030872106552124, 0.6912833452224731, 0.6924939751625061, 0.6961259245872498, 0.6846247315406799, 0.6746368408203125, 0.67039954662323, 0.6758474707603455]"
61
+ H3K14ac,2.5B 1000G,"[0.4502939890741991, 0.4506843113144407, 0.4562054545140181, 0.4456119728530648, 0.4613084722413589, 0.46267380207163694, 0.44471425545923493, 0.4346633941399054, 0.4576439756467489, 0.45980267467565034]","[0.7173185393408342, 0.7220419806576175, 0.7273541358278124, 0.7202117465738246, 0.7306265541559659, 0.7274201937231064, 0.7188008783217118, 0.7048970652858675, 0.7273985574391612, 0.7244861261876817]","[0.7176150679588318, 0.7233656644821167, 0.7303268909454346, 0.7218523025512695, 0.7360774874687195, 0.7285109162330627, 0.7200363278388977, 0.7049031853675842, 0.7297216057777405, 0.7251816391944885]"
62
+ H3K4me1,500M 1000G,"[0.3892883041101858, 0.37917283860263373, 0.3712706470179252, 0.39135281819215567, 0.3697648885666275, 0.3645473083966255, 0.38006790268497226, 0.36563682336233116, 0.382435280455593, 0.38040862866710756]","[0.6889344317975501, 0.6895392639814546, 0.6784128710271642, 0.6956133819451578, 0.6669909171711623, 0.673346274916398, 0.6882695092026744, 0.668563462721959, 0.6880605601025024, 0.6888176136010784]","[0.6988636255264282, 0.6925504803657532, 0.690025269985199, 0.6976010203361511, 0.6868686676025391, 0.6865530014038086, 0.6887626051902771, 0.6859217286109924, 0.6957070827484131, 0.6944444179534912]"
63
+ H3K4me1,500M HR,"[0.3676725149358649, 0.35354284492324717, 0.3631365462954611, 0.3541434243833615, 0.35901871751539755, 0.3588160729814464, 0.35071044967212095, 0.39225354600352297, 0.393750927474779, 0.3743719139695876]","[0.6777572979075664, 0.6690295784872209, 0.6815102829335093, 0.6770058782767454, 0.6740112910634641, 0.6666174734356554, 0.6727587425968333, 0.683775435894431, 0.6916785152534604, 0.674302754711662]","[0.6884469985961914, 0.6815025210380554, 0.6846590638160706, 0.6802399158477783, 0.6843434572219849, 0.683080792427063, 0.6802399158477783, 0.6988636255264282, 0.7010732293128967, 0.6903409361839294]"
64
+ H3K4me1,2.5B MS,"[0.5411012513843034, 0.5391258905905318, 0.5395409587300006, 0.540310465429785, 0.548535731376271, 0.5418131654423834, 0.5409138671117125, 0.5483655245203037, 0.5562100701987815, 0.5427100369697414]","[0.7651716253153911, 0.7650867393027672, 0.7656347989446493, 0.7681736356052512, 0.7670476525408827, 0.7672688156793812, 0.7685994508255852, 0.7704587825949394, 0.7769370072158917, 0.770328417014438]","[0.7720959782600403, 0.7714646458625793, 0.7717803120613098, 0.7727272510528564, 0.774936854839325, 0.7730429172515869, 0.7730429172515869, 0.7761995196342468, 0.7806186676025391, 0.7739899158477783]"
65
+ H3K4me1,2.5B 1000G,"[0.4415704678203915, 0.40502283658514787, 0.40691902083082543, 0.40626920231767577, 0.4302205735541327, 0.41537791698985316, 0.4242372398951979, 0.42144384497658827, 0.40482791586228745, 0.42791213666835753]","[0.715606537440735, 0.6760292658730158, 0.7034583747627225, 0.6959578256402628, 0.7146674464403708, 0.7065752315232359, 0.7110405903100556, 0.7022588169025643, 0.7008771929824561, 0.7117790129914536]","[0.7241161465644836, 0.7001262903213501, 0.7058081030845642, 0.7067550420761108, 0.7184343338012695, 0.7114899158477783, 0.7118055820465088, 0.7136995196342468, 0.7064393758773804, 0.7178030014038086]"
66
+ H3K4me2,500M HR,"[0.2711925437566299, 0.2442810536501787, 0.27887939087648494, 0.2694850523728018, 0.2270035898509139, 0.2698257863691501, 0.27030386906591825, 0.2765053038184491, 0.2595183212480342, 0.27114755717693967]","[0.6234140679737391, 0.6046248308316929, 0.6288898500803223, 0.6288990417980873, 0.5964982937684512, 0.6293266506222723, 0.6332653854156884, 0.6322845412194835, 0.628631919892103, 0.6347270459697925]","[0.6599217057228088, 0.6494778394699097, 0.6628590226173401, 0.6566579937934875, 0.5966057777404785, 0.6566579937934875, 0.6393603086471558, 0.6599217057228088, 0.647193193435669, 0.6520887613296509]"
67
+ H3K4me2,2.5B MS,"[0.33105919548352114, 0.3392441121325284, 0.32685209284233946, 0.306408866675184, 0.29233607333335465, 0.3181920455406593, 0.3213174993731777, 0.3147417252054735, 0.33870703850922146, 0.3333974796066594]","[0.6652179557612536, 0.6650224593553675, 0.663134154614216, 0.6530574640373628, 0.6433027801932023, 0.6568444610220067, 0.6543158373655293, 0.65736820861648, 0.6673895730365957, 0.6666986650502156]","[0.6739556193351746, 0.6684073209762573, 0.6719974279403687, 0.6628590226173401, 0.6481723189353943, 0.6622062921524048, 0.6804830431938171, 0.6690600514411926, 0.6857049465179443, 0.6778720617294312]"
68
+ H3K4me2,500M 1000G,"[0.25603030431639767, 0.23250015484310574, 0.26306031401141117, 0.2601867702385634, 0.2542360836144159, 0.28400636484248365, 0.2588591410023777, 0.24791457193351257, 0.2867314170592847, 0.2794694512680297]","[0.6175031056425313, 0.5522236818422375, 0.5967451582827873, 0.6252480120350243, 0.6193875428155347, 0.6378238595826826, 0.5963897904395561, 0.580464822345588, 0.6423037486376413, 0.6395752516700488]","[0.652741551399231, 0.644908607006073, 0.6582898497581482, 0.6517624258995056, 0.6507833003997803, 0.6622062921524048, 0.6566579937934875, 0.6520887613296509, 0.6599217057228088, 0.6537206172943115]"
69
+ H3K4me2,2.5B 1000G,"[0.2793120813310438, 0.2810013651347116, 0.29796217957679566, 0.30454439558430363, 0.26707057673279666, 0.2936302768101277, 0.2720050019210577, 0.2770004404864424, 0.25513283075922105, 0.2661538230915651]","[0.6266731535776168, 0.619105833783588, 0.6482696179129465, 0.6489695526097763, 0.6327081084347383, 0.6458913635384224, 0.6298800335647828, 0.6349970800585735, 0.6206165524902796, 0.6135571005704112]","[0.627284586429596, 0.6654700040817261, 0.6644908785820007, 0.6533942818641663, 0.6406658291816711, 0.6533942818641663, 0.6579634547233582, 0.6393603086471558, 0.6507833003997803, 0.6135770082473755]"
70
+ H3K4me3,500M HR,"[0.24507640271019818, 0.21133627314850914, 0.211152102589381, 0.24375280747619923, 0.2646758109621725, 0.24662913141835194, 0.2280871692120264, 0.2208112071353334, 0.22428045988514156, 0.26097532445684984]","[0.5984733540966187, 0.5936214392880979, 0.5957307765750145, 0.6204447585764584, 0.6272177006866868, 0.6091470351629624, 0.5426321954129594, 0.5375687325788616, 0.6057035274032543, 0.6098883213899711]","[0.605163037776947, 0.595923900604248, 0.5972825884819031, 0.625271737575531, 0.627445638179779, 0.6119564771652222, 0.573369562625885, 0.5695651769638062, 0.606249988079071, 0.614945650100708]"
71
+ H3K4me3,500M 1000G,"[0.22940366741772483, 0.2367128949127328, 0.24876978751957204, 0.2466381603503374, 0.23378004255025503, 0.23894251859854512, 0.2511515237974152, 0.22741358767286016, 0.2328006112851649, 0.22814438293880532]","[0.6031360257981178, 0.6050186136108145, 0.6204473953407577, 0.5979472983305726, 0.5914308555273966, 0.6009063140837193, 0.6141800610282047, 0.579835199004975, 0.609024932828535, 0.5594282903676835]","[0.605163037776947, 0.6076086759567261, 0.6282608509063721, 0.605163037776947, 0.5989130139350891, 0.605434775352478, 0.616032600402832, 0.5913043022155762, 0.6097825765609741, 0.5812499523162842]"
72
+ H3K4me3,2.5B 1000G,"[0.2865079427710935, 0.3221462077987465, 0.3012588721981652, 0.3134099207302404, 0.32985640616685813, 0.30957417456450415, 0.30018451486999403, 0.3131362033404231, 0.3009670797964195, 0.31683091358300275]","[0.6432164444935391, 0.6554571668014401, 0.647186595450583, 0.6397128861475077, 0.6648233615668361, 0.6513399269558388, 0.6432555724124682, 0.6491375224960444, 0.6475530725794952, 0.6575800233531324]","[0.6451086401939392, 0.6557064652442932, 0.6538043022155762, 0.6429347395896912, 0.666847825050354, 0.6513586640357971, 0.6437499523162842, 0.6497282385826111, 0.647554337978363, 0.657880425453186]"
73
+ H3K4me3,2.5B MS,"[0.4285411468718841, 0.4014136897477992, 0.40786546552966657, 0.4106648466943894, 0.408680896195012, 0.39227554680894494, 0.3950500006642438, 0.40011693075726096, 0.42183920994108093, 0.4120168621298653]","[0.7085213125170862, 0.6871872457087911, 0.6912034975094579, 0.6904423051086055, 0.6860348781749607, 0.657498639614428, 0.6509859158376765, 0.6762658629914307, 0.705871837488458, 0.660938880587473]","[0.7086955904960632, 0.688858687877655, 0.6926630139350891, 0.6923912763595581, 0.688858687877655, 0.666847825050354, 0.6630434393882751, 0.6807065010070801, 0.7059782147407532, 0.6720108389854431]"
74
+ H3K36me3,2.5B MS,"[0.6177631346252683, 0.6160318344477694, 0.5925609422146977, 0.6014363475281119, 0.6267723744409409, 0.6189756731337276, 0.6228385930539585, 0.6237444803507264, 0.6275556572781784, 0.6100703981931243]","[0.8047879764905986, 0.8051512366772722, 0.7955565058028918, 0.7924548638631073, 0.8085477349501511, 0.807310883292375, 0.8105315636318073, 0.8089069382971164, 0.8098969609069135, 0.8040587282393696]","[0.8093463182449341, 0.8090596199035645, 0.7981650829315186, 0.7993118762969971, 0.8133600354194641, 0.8107798099517822, 0.8130733370780945, 0.8127866387367249, 0.814220130443573, 0.8067660331726074]"
75
+ H3K36me3,500M 1000G,"[0.46974230655976357, 0.4569436606182713, 0.44986181723620433, 0.4688105480993106, 0.4737623656050375, 0.4646029227297982, 0.455630529953023, 0.47131701938483145, 0.4752375072122057, 0.46771186361520106]","[0.7345899845339469, 0.7275448655024874, 0.7237847880662376, 0.7288993606941997, 0.7365704032038358, 0.7322270775124184, 0.7257043852113965, 0.7321304816495723, 0.7345778329057073, 0.7247393730449512]","[0.7356650829315186, 0.7313646674156189, 0.7279242873191833, 0.7365251779556274, 0.7393921613693237, 0.7336582541465759, 0.7307912707328796, 0.7382453680038452, 0.7402522563934326, 0.7348049879074097]"
76
+ H3K36me3,2.5B 1000G,"[0.5003851344134175, 0.5159764401995919, 0.5211950537338842, 0.5294373385471733, 0.5421469723930434, 0.5367200847541176, 0.5197259113712458, 0.5327879384085178, 0.5298748574804562, 0.5358359529086366]","[0.7393654896436475, 0.7558115970331286, 0.7526713943488191, 0.7644752917247255, 0.7692967182616044, 0.7673326502732241, 0.7587039429016997, 0.7659297698502661, 0.7619246352924524, 0.7676208134587365]","[0.7497132420539856, 0.7603210806846619, 0.7608944773674011, 0.7654815912246704, 0.7732224464416504, 0.7706421613693237, 0.7591742873191833, 0.7686352729797363, 0.7669150829315186, 0.7700687646865845]"
77
+ H3K36me3,500M HR,"[0.44728962273250983, 0.44391386153409673, 0.43862763496010687, 0.4343054090423217, 0.47364588597413626, 0.46794066859928574, 0.4541145254161311, 0.43653671034024066, 0.4481743815284022, 0.45134973683452684]","[0.7120642334724162, 0.7198174160067982, 0.7185822470766896, 0.7138125398735884, 0.7367715369693048, 0.7328266415056304, 0.7261497637016193, 0.7081906620710752, 0.7239710323165391, 0.7250782637413802]","[0.7241972088813782, 0.7250573039054871, 0.7193233370780945, 0.7138761281967163, 0.7382453680038452, 0.7368118762969971, 0.7267774939537048, 0.7196100354194641, 0.7253440022468567, 0.7284976840019226]"
78
+ H3K79me3,500M HR,"[0.5667378589447256, 0.5659402988511457, 0.5685787428990028, 0.5224595818707833, 0.5673495005300289, 0.5795516616279335, 0.5529488563261115, 0.5762153022442182, 0.5400611545337611, 0.5627671201389526]","[0.7817642698295033, 0.7761565559703139, 0.784152207507867, 0.7586700520699263, 0.7789401744054172, 0.7863467688566081, 0.7760357254124117, 0.787542896068213, 0.7683021828246083, 0.7794130311908185]","[0.784375011920929, 0.7815972566604614, 0.7847222685813904, 0.7586805820465088, 0.7833333611488342, 0.7899305820465088, 0.7777777910232544, 0.7878472208976746, 0.7711805701255798, 0.7822917103767395]"
79
+ H3K79me3,2.5B MS,"[0.6110563016183395, 0.6124237230121695, 0.6274889927103118, 0.6266331758053183, 0.6133876442299759, 0.6334036499270992, 0.6299658088205407, 0.633088012543528, 0.6051227497880216, 0.619391970521784]","[0.802434194956094, 0.8060781661563026, 0.8137381666715919, 0.8095490248208786, 0.8064871658529511, 0.8153032241955118, 0.8145750069850217, 0.815542061933097, 0.7989571456525049, 0.8096896952527474]","[0.8055555820465088, 0.8065972328186035, 0.8145833611488342, 0.8128472566604614, 0.8069444894790649, 0.8173611164093018, 0.8159722685813904, 0.8173611164093018, 0.7989583611488342, 0.8104166984558105]"
80
+ H3K79me3,500M 1000G,"[0.5257722898706528, 0.5768586301988946, 0.5537286820146968, 0.5734073357106991, 0.5496806920828105, 0.5642203469784676, 0.5594860926903032, 0.5744321905027713, 0.5491368653513822, 0.5698755210802025]","[0.7628187476803756, 0.7875754625121714, 0.7759307454181847, 0.7857192696910179, 0.774834328082921, 0.7784136653741534, 0.7796518162101562, 0.7811410843563149, 0.7719600269189382, 0.7849330923529224]","[0.7635416984558105, 0.7895833253860474, 0.7781250476837158, 0.7878472208976746, 0.7756944894790649, 0.7822917103767395, 0.7809028029441833, 0.7861111164093018, 0.7753472328186035, 0.7857639193534851]"
81
+ H3K79me3,2.5B 1000G,"[0.5819172099542437, 0.5743147954344395, 0.5666885002002957, 0.5740710783965471, 0.5756421232535753, 0.5591081021387645, 0.5802541217972678, 0.5682526604309266, 0.5741901376357333, 0.5827832700597733]","[0.7880257213289198, 0.7871263806250108, 0.7824357617837642, 0.7868820878567917, 0.787211746622426, 0.7777776692538235, 0.788326197612028, 0.7823657832601404, 0.7870789310047794, 0.7899902984648748]","[0.7913194894790649, 0.788194477558136, 0.7826389074325562, 0.788194477558136, 0.7875000238418579, 0.7805555462837219, 0.7909722328186035, 0.785069465637207, 0.7878472208976746, 0.7923611402511597]"
82
+ H3K9ac,500M 1000G,"[0.46810975685813855, 0.46301764604280865, 0.4620228901395919, 0.49073883065189516, 0.4814005603497142, 0.46303868202829296, 0.48310789716993874, 0.47707905100413794, 0.4855122951000446, 0.4825969439229771]","[0.7340486683272657, 0.7276654355036236, 0.7229783592253105, 0.7449300093543927, 0.7354320272069839, 0.7305618044368885, 0.740851618476197, 0.7335951674107476, 0.7405766859922698, 0.7412949428763442]","[0.7370316982269287, 0.7280259132385254, 0.7229827046394348, 0.7467579245567322, 0.7355907559394836, 0.7319884300231934, 0.7424351572990417, 0.7337896227836609, 0.7413544654846191, 0.7442362904548645]"
83
+ H3K9ac,500M HR,"[0.44282125526764604, 0.44673933976257013, 0.4507572202508887, 0.45694977388707475, 0.4503719136198712, 0.4336104546552354, 0.46484425925548734, 0.45373875140057524, 0.4410125799496376, 0.4750452429917516]","[0.7163232990301134, 0.7089948306466856, 0.7224198890300577, 0.7235119721246246, 0.720583431768991, 0.7103203589690077, 0.7290178460596195, 0.7160905815535089, 0.7205039087200036, 0.7328417070204158]","[0.7164985537528992, 0.7092939019203186, 0.7229827046394348, 0.723703145980835, 0.7208213210105896, 0.7103745937347412, 0.7294668555259705, 0.7161383032798767, 0.723703145980835, 0.733069121837616]"
84
+ H3K9ac,2.5B MS,"[0.5454977877205405, 0.5274146862919094, 0.5452694951513016, 0.5712691128401006, 0.5435377159389819, 0.5478230631033366, 0.5544908155677529, 0.5606513830371372, 0.5444550538166342, 0.5598274700341734]","[0.7651090779313477, 0.7591622755394922, 0.7719697518784276, 0.7855692807458423, 0.7702931423899927, 0.7739098907854671, 0.7772453048296726, 0.7769607435265926, 0.7698701518419828, 0.7759763258706684]","[0.7651296854019165, 0.7672910690307617, 0.7734149694442749, 0.7885446548461914, 0.7755763530731201, 0.7766570448875427, 0.7798991203308105, 0.7773774862289429, 0.7705331444740295, 0.7762967944145203]"
85
+ H3K9ac,2.5B 1000G,"[0.5067998406128982, 0.48638310383148553, 0.505724042605258, 0.4892631054228321, 0.48157043123817017, 0.48447587142524723, 0.5026225329198659, 0.49300880049813134, 0.5063265679607559, 0.48730169284309527]","[0.7496349549184269, 0.7379504935132051, 0.7523062787872516, 0.7383944073837156, 0.740446314020939, 0.7418983626138287, 0.744202320732933, 0.7324977415854252, 0.7524498677192204, 0.7434613171454257]","[0.75, 0.7381123900413513, 0.753962516784668, 0.738472580909729, 0.7424351572990417, 0.743876039981842, 0.7442362904548645, 0.7327089309692383, 0.753962516784668, 0.7456772327423096]"
86
+ H4,2.5B MS,"[0.8036805555831459, 0.8105419918970356, 0.8119907709694597, 0.7952772005730883, 0.7985835408596687, 0.8119942340314178, 0.805090371516038, 0.8101795804569696, 0.8011407850348814, 0.8221949718798557]","[0.9018049021975946, 0.9050411427129674, 0.9059211385954509, 0.8972706393946593, 0.8992705320025516, 0.9057467018771074, 0.9025172211286654, 0.9049640504051863, 0.9005699577128148, 0.9106780325997789]","[0.9031593799591064, 0.905906617641449, 0.9072802662849426, 0.8990384936332703, 0.9004120826721191, 0.9065934419631958, 0.9038462042808533, 0.905906617641449, 0.9017857313156128, 0.911401093006134]"
87
+ H4,2.5B 1000G,"[0.7863347156458945, 0.7823115684672871, 0.7971021715283273, 0.785032954947631, 0.795356654835251, 0.7931710310749993, 0.7868569550040311, 0.7855828983432376, 0.7939025961945035, 0.7754190390085705]","[0.8927016894919638, 0.890134953707988, 0.8981889378365149, 0.8920226359985396, 0.8974302343956757, 0.8956401708634929, 0.8927787678395216, 0.8925647965000726, 0.8967235785710375, 0.8849461169929616]","[0.8935439586639404, 0.8907967209815979, 0.8990384936332703, 0.8928571939468384, 0.8983516693115234, 0.8962912559509277, 0.8935439586639404, 0.8935439586639404, 0.8976648449897766, 0.8853022456169128]"
88
+ H4,500M 1000G,"[0.7449373892723496, 0.7671825169506971, 0.7393816074763093, 0.7529209604257474, 0.7644514940369, 0.7660960334827892, 0.7578515898349477, 0.7416131547227583, 0.7478430031067077, 0.7701283610240557]","[0.872159062284841, 0.8814150341219679, 0.869504473394244, 0.8760571150027939, 0.8820884146341463, 0.8830206653543984, 0.8777489202131823, 0.8691558441558441, 0.8732716689067508, 0.8848941694622083]","[0.874313235282898, 0.8818681836128235, 0.8715659379959106, 0.8770604729652405, 0.8832417726516724, 0.884615421295166, 0.8784340620040894, 0.8722527623176575, 0.8756868243217468, 0.8859890103340149]"
89
+ H4,500M HR,"[0.7546763400439801, 0.7512895799900536, 0.7475546514205768, 0.7628713834374846, 0.7235369811650653, 0.759167245749312, 0.7442850121184132, 0.7351231766000758, 0.7553015438926033, 0.7493902491536067]","[0.8772163278957517, 0.873775824750546, 0.8736949674742807, 0.8809480345624924, 0.8598574603566151, 0.8793792993121101, 0.8718377550481489, 0.8674677493069478, 0.87691115231466, 0.8745099533107468]","[0.8784340620040894, 0.874313235282898, 0.875, 0.8818681836128235, 0.8633242249488831, 0.8804945349693298, 0.8729395866394043, 0.8688187003135681, 0.8777472972869873, 0.8756868243217468]"
90
+ H4ac,500M HR,"[0.31256145760905485, 0.34426974888449574, 0.29445997668209756, 0.3295210839386718, 0.3446323393216155, 0.3363071758605047, 0.33469897099451035, 0.31617669148550276, 0.3463083633447786, 0.3076551854757101]","[0.6247017143609261, 0.670706047693893, 0.6405549231644849, 0.6626708497932887, 0.6722402244005379, 0.6678702357189068, 0.6671796347500427, 0.6540490276986738, 0.6731351981351981, 0.6535556239060978]","[0.6317488551139832, 0.6710680723190308, 0.6519953012466431, 0.6628521084785461, 0.6748826503753662, 0.6690140962600708, 0.6701878309249878, 0.654049277305603, 0.6754695177078247, 0.6569835543632507]"
91
+ H4ac,500M 1000G,"[0.3353755477674514, 0.3273226418731722, 0.36393588060327703, 0.34525116613005646, 0.34295650536155037, 0.34241445363408773, 0.35417172071955394, 0.3183420343365383, 0.3203832935585423, 0.34207202226660743]","[0.659191723227564, 0.6580729698454836, 0.6819678810102016, 0.6712674799743983, 0.6713706338399377, 0.6700229817469491, 0.6770820955116224, 0.6590448462502599, 0.6593010926266142, 0.6691135723877152]","[0.67136150598526, 0.6678403615951538, 0.6839788556098938, 0.6716549396514893, 0.6728286743164062, 0.6704812049865723, 0.6789906024932861, 0.6605046987533569, 0.6599178314208984, 0.6748826503753662]"
92
+ H4ac,2.5B 1000G,"[0.4051975473537347, 0.3983512501602216, 0.42648642122041575, 0.40927552930442557, 0.4158734283787705, 0.39989317297817406, 0.4069475237978979, 0.4176309127957768, 0.42098143271583593, 0.4052438032312391]","[0.6939414624056263, 0.6890292115543571, 0.7105849644549559, 0.7046355577187882, 0.7047673667622516, 0.695422115627019, 0.701398756413993, 0.7039276167860382, 0.7099245972182081, 0.7015606273730945]","[0.6942488551139832, 0.68955397605896, 0.7106807827949524, 0.7065727710723877, 0.704812228679657, 0.6954225301742554, 0.70158451795578, 0.7039319276809692, 0.7106807827949524, 0.7056924700737]"
93
+ H4ac,2.5B MS,"[0.47569912134440034, 0.4993215338222408, 0.46703782027404456, 0.4849067124055371, 0.492204132576657, 0.49839293734881307, 0.49243155326038995, 0.46620752953812294, 0.509008236490514, 0.5040223457928005]","[0.7295607005335001, 0.740666873207223, 0.7176105239740921, 0.7422443155666023, 0.7437071947493805, 0.7452925325265751, 0.7437204408424918, 0.7329806800567445, 0.7494109879800563, 0.7420403152527937]","[0.7297535538673401, 0.7409037947654724, 0.718896746635437, 0.7432512044906616, 0.7438380122184753, 0.7453051805496216, 0.7438380122184753, 0.7341549396514893, 0.7494131326675415, 0.7423709034919739]"
94
+ enhancers,500M 1000G,"[0.5332285519249769, 0.45514956368175624, 0.45898855819699846, 0.5392293148264975, 0.545006812627737, 0.4660273245009, 0.5120781332156182, 0.5060698239044359, 0.49639505031477854, 0.5369432237063084]","[0.7606676113997797, 0.7234443746071653, 0.7182723240629698, 0.7665882352941177, 0.7724985781161132, 0.7202726070593022, 0.7545028683083244, 0.7409523809523808, 0.7433574879227054, 0.7670792869620753]","[0.762499988079071, 0.7249999642372131, 0.7224999666213989, 0.7674999833106995, 0.7724999785423279, 0.7249999642372131, 0.7549999952316284, 0.7450000047683716, 0.7450000047683716, 0.7674999833106995]"
95
+ enhancers,500M HR,"[0.5153157276043665, 0.5002872077897824, 0.49419373104099956, 0.4400220016501375, 0.48071937585021024, 0.5173397868976866, 0.49500618761601806, 0.5273852196529815, 0.5355425115786407, 0.5046883805833862]","[0.7574257116241849, 0.7461657839016329, 0.7439180537772088, 0.7199929998249956, 0.7320458050001264, 0.7569516220973572, 0.7474984218651367, 0.7619629288582364, 0.7673822372576117, 0.7450766347591795]","[0.7574999928474426, 0.7475000023841858, 0.7450000047683716, 0.7199999690055847, 0.73499995470047, 0.7574999928474426, 0.7475000023841858, 0.762499988079071, 0.7674999833106995, 0.7475000023841858]"
96
+ enhancers,2.5B MS,"[0.5361337814375285, 0.5977032489400457, 0.5374306524082764, 0.5651766453068016, 0.5451703923755873, 0.49830601542042446, 0.5613770627772395, 0.5160913970847237, 0.5807263622132403, 0.54533411950365]","[0.7672541622088331, 0.797042076184391, 0.7669742356191156, 0.7824660103141117, 0.7724644475699329, 0.746662402568492, 0.7797301694575856, 0.7572435885403958, 0.7898686679174485, 0.7724303067814517]","[0.7674999833106995, 0.79749995470047, 0.7674999833106995, 0.7824999690055847, 0.7724999785423279, 0.7475000023841858, 0.7799999713897705, 0.7574999928474426, 0.7899999618530273, 0.7724999785423279]"
97
+ enhancers,2.5B 1000G,"[0.5402431641481157, 0.5550624480383041, 0.5658565061890066, 0.5465393095146512, 0.5027583489578353, 0.54533411950365, 0.5618006477335895, 0.5206512212946292, 0.48890586508171274, 0.5901180354118042]","[0.7699482383536296, 0.7774874836709564, 0.7823353911395493, 0.7721796276013144, 0.7455518815934499, 0.7724303067814517, 0.7796474358974359, 0.7598499061913695, 0.7376321299730064, 0.7949794979497949]","[0.7699999809265137, 0.7774999737739563, 0.7824999690055847, 0.7724999785423279, 0.7475000023841858, 0.7724999785423279, 0.7799999713897705, 0.7599999904632568, 0.7400000095367432, 0.7949999570846558]"
98
+ enhancers_types,500M HR,"[0.4293383614020864, 0.43964266027665055, 0.429859781954171, 0.4270455741944135, 0.44627944689666327, 0.3921416787982921, 0.4095646402960668, 0.42872713085689357, 0.42401588537357904, 0.4617783867601968]","[0.45169230769230767, 0.4837106322746009, 0.45430581412590404, 0.46323107402229674, 0.4934194242668819, 0.43412534862080365, 0.4465987431122385, 0.4999084663263768, 0.46059655021391427, 0.4969046588453978]","[0.5974999666213989, 0.612500011920929, 0.5999999642372131, 0.6024999618530273, 0.6274999976158142, 0.5625, 0.5924999713897705, 0.6225000023841858, 0.5924999713897705, 0.6324999928474426]"
99
+ enhancers_types,500M 1000G,"[0.38018067239169157, 0.36042001565491455, 0.42597627445042036, 0.4591099950915802, 0.380798082558628, 0.4196101061917269, 0.4148566068222576, 0.3922367497782848, 0.39832893489970095, 0.39064686439376806]","[0.4180559206363115, 0.4065245145677318, 0.4604923160614715, 0.4872733285802573, 0.45939637074297185, 0.47714828818777244, 0.45183864791707923, 0.45367302829771433, 0.44862515774465467, 0.4370354630733493]","[0.5399999618530273, 0.5324999690055847, 0.612500011920929, 0.625, 0.5724999904632568, 0.6299999952316284, 0.5899999737739563, 0.5774999856948853, 0.5849999785423279, 0.5575000047683716]"
100
+ enhancers_types,2.5B 1000G,"[0.43244998209386826, 0.3985670265772074, 0.4292729533637114, 0.4547333726348017, 0.4395633935401107, 0.3864571612415341, 0.4305760065448856, 0.4205221256073971, 0.4997674401032491, 0.4559972361826212]","[0.4534191401803695, 0.43004023736201, 0.4507593189139439, 0.4725691214959698, 0.5130516822061176, 0.43152838146752953, 0.4816320750900191, 0.4536156059044818, 0.49172497963563777, 0.48172823960605315]","[0.5999999642372131, 0.5625, 0.5949999690055847, 0.6175000071525574, 0.6175000071525574, 0.5525000095367432, 0.6100000143051147, 0.5924999713897705, 0.6549999713897705, 0.6225000023841858]"
101
+ enhancers_types,2.5B MS,"[0.4253703847536052, 0.4751703848856395, 0.4459640440343017, 0.45484531666744127, 0.42522043295898376, 0.4418333723836862, 0.42866247632326276, 0.4423711287357847, 0.4595211447191255, 0.4985350582145405]","[0.4522354207511629, 0.481047580190787, 0.4590228526398739, 0.49153283991993674, 0.455469748496085, 0.5174610466854404, 0.4598804257576136, 0.46882759678493785, 0.46925844031550107, 0.4979784794995257]","[0.5974999666213989, 0.6399999856948853, 0.6074999570846558, 0.6225000023841858, 0.5949999690055847, 0.637499988079071, 0.6100000143051147, 0.6150000095367432, 0.6225000023841858, 0.6549999713897705]"
102
+ promoter_tata,2.5B 1000G,"[0.9122689352803203, 0.9184388198135769, 0.8798848651504376, 0.9216614405926327, 0.915620376107523, 0.9053881793899381, 0.8924256589550325, 0.9314575152875338, 0.900258728831813, 0.9187868046826803]","[0.9560101246538495, 0.9592168577383364, 0.9397405289360206, 0.96082048020353, 0.9576475565898033, 0.9526915549764703, 0.9461901925749454, 0.9657261857134152, 0.949563540800021, 0.9592686339387495]","[0.9561688303947449, 0.9594155550003052, 0.9399350881576538, 0.9610389471054077, 0.9577922224998474, 0.9529221057891846, 0.9464285969734192, 0.9659090638160706, 0.9496753215789795, 0.9594155550003052]"
103
+ promoter_tata,500M HR,"[0.8767438814613043, 0.8726952175548854, 0.8825910089208163, 0.8668529814031685, 0.8866415448057033, 0.8773042024505223, 0.8859031012806026, 0.8864008070240722, 0.9154450330366374, 0.896069763094551]","[0.9381231826592651, 0.9362851573377889, 0.9412854918822744, 0.9332259915236985, 0.943018286478472, 0.9381650271029913, 0.942928992124942, 0.9429977976421817, 0.9576309746780525, 0.9478739158028349]","[0.9383116960525513, 0.9366883039474487, 0.9415584206581116, 0.9334415793418884, 0.9431818127632141, 0.9383116960525513, 0.9431818127632141, 0.9431818127632141, 0.9577922224998474, 0.948051929473877]"
104
+ promoter_tata,2.5B MS,"[0.9217344327589095, 0.8992331964756002, 0.9186319093542266, 0.9160869871075552, 0.9259971427577152, 0.9163781966211713, 0.9218296763563467, 0.9316720581308645, 0.9184422789725794, 0.915620376107523]","[0.960856994588183, 0.9494931060840495, 0.9592522523714395, 0.9576779976323355, 0.9625675372197784, 0.9576918606494151, 0.9608739837398373, 0.9657718919920093, 0.9591571521396083, 0.9576475565898033]","[0.9610389471054077, 0.9496753215789795, 0.9594155550003052, 0.9577922224998474, 0.9626623392105103, 0.9577922224998474, 0.9610389471054077, 0.9659090638160706, 0.9594155550003052, 0.9577922224998474]"
105
+ promoter_tata,500M 1000G,"[0.876519150081579, 0.8955414807377807, 0.8666438494638, 0.8804067282938839, 0.8857589738616624, 0.860337039529534, 0.8702287995396174, 0.8642795377269727, 0.8792306108008235, 0.8571986356962434]","[0.9381002750158663, 0.9477606402713732, 0.9332005596595492, 0.9397825598752956, 0.9428769761890253, 0.9299687228175374, 0.9348665080623842, 0.9316560825875169, 0.9396128033998268, 0.9283531588686228]","[0.9383116960525513, 0.948051929473877, 0.9334415793418884, 0.9399350881576538, 0.9431818127632141, 0.9301947951316833, 0.9350649118423462, 0.9318181872367859, 0.9399350881576538, 0.9285714030265808]"
106
+ promoter_all,500M HR,"[0.9068265883361242, 0.9064462836309644, 0.8998681865804032, 0.8998175095273406, 0.9034187988599963, 0.8977894867588492, 0.9061017647942561, 0.9094455841967378, 0.9028529571261047, 0.9061905139994203]","[0.9530212377255081, 0.9532087531795114, 0.9494684997296116, 0.9498267504200152, 0.9516881084355886, 0.9486345726361509, 0.9530400045654283, 0.9545527176403509, 0.9513473032532953, 0.9530377050933614]","[0.9530405402183533, 0.9532094597816467, 0.9494932889938354, 0.9498311281204224, 0.9516891837120056, 0.9486486911773682, 0.9530405402183533, 0.9545608162879944, 0.9513514041900635, 0.9530405402183533]"
107
+ promoter_all,500M 1000G,"[0.9013679433456981, 0.9061340342154306, 0.9040592132817802, 0.9013762481812246, 0.913901472527791, 0.9010361898488813, 0.8972641591176622, 0.8955066066147008, 0.9051916039283284, 0.9062502650316776]","[0.9504970260572414, 0.9530391684198224, 0.9520268901424687, 0.9506749944843788, 0.9569244945112543, 0.9505061339596956, 0.9482923033079773, 0.9476282252360726, 0.9525305316896056, 0.9528584381149552]","[0.9505068063735962, 0.9530405402183533, 0.9520270228385925, 0.9506757259368896, 0.9569256901741028, 0.9505068063735962, 0.9483108520507812, 0.9476351737976074, 0.9525337815284729, 0.9528716206550598]"
108
+ promoter_all,2.5B MS,"[0.9536927865741315, 0.9541246228566413, 0.9466639769654861, 0.9541795205306215, 0.9455053376832669, 0.9459459459459459, 0.9496743561736427, 0.9561369563123299, 0.9466322099246031, 0.9510530800377583]","[0.9766853466993054, 0.9770261774654743, 0.9733102137511295, 0.9770255166519348, 0.9726317334685157, 0.972972972972973, 0.9748309194940674, 0.9780398989013557, 0.9733106615483949, 0.9755062472623224]","[0.9766892194747925, 0.9770270586013794, 0.9733108282089233, 0.9770270586013794, 0.9726351499557495, 0.9729729890823364, 0.9748311042785645, 0.9780405759811401, 0.9733108282089233, 0.9755067825317383]"
109
+ promoter_all,2.5B 1000G,"[0.9307437212778283, 0.9275025459499154, 0.9304159972262692, 0.9297910697779163, 0.9277474638108211, 0.9338050998849082, 0.9251188897509351, 0.9341946084265634, 0.9326932772677271, 0.9248851871297868]","[0.9653716127289683, 0.9636797368915397, 0.9650272365692091, 0.964863705899722, 0.9636749438307266, 0.9668915140101582, 0.9623217825824495, 0.9670595240734698, 0.9662114920879529, 0.9623265393771934]","[0.9653716683387756, 0.9636824727058411, 0.9650338292121887, 0.9648649096488953, 0.9636824727058411, 0.9668919444084167, 0.9623311161994934, 0.9670608639717102, 0.9662162661552429, 0.9623311161994934]"
110
+ promoter_no_tata,500M 1000G,"[0.8973523014141566, 0.9019904780817679, 0.8982732519516031, 0.9038004832640129, 0.9083930862241884, 0.9037352992238127, 0.9045297286397198, 0.9055652033220422, 0.8974327562273763, 0.8936505942876812]","[0.9478077554809683, 0.9508888344857851, 0.9487909178822356, 0.9518374559072601, 0.954100916652766, 0.9518496960923872, 0.952227890583455, 0.9525809872123812, 0.9482119595746761, 0.9463218851065986]","[0.9478852152824402, 0.9509063363075256, 0.9488292932510376, 0.9518504738807678, 0.9541162848472595, 0.9518504738807678, 0.9522280693054199, 0.9526057243347168, 0.9482628107070923, 0.9463745951652527]"
111
+ promoter_no_tata,2.5B 1000G,"[0.9293911799815422, 0.9363508863136843, 0.9336615071838706, 0.9305086278581647, 0.9370556494943163, 0.9355223835354856, 0.9335838332457782, 0.9366504590136523, 0.9316720283117214, 0.9340980251929716]","[0.9646856472683271, 0.9680784152852571, 0.9667577714251558, 0.9652541762493092, 0.9684578594738638, 0.9677031607726154, 0.9667608820154239, 0.9682699632247003, 0.9658177920030102, 0.966944642440932]","[0.9646903276443481, 0.9680891036987305, 0.9667673707008362, 0.9652568101882935, 0.9684667587280273, 0.9677115082740784, 0.9667673707008362, 0.9682779312133789, 0.965823233127594, 0.9669561982154846]"
112
+ promoter_no_tata,2.5B MS,"[0.9549327589422929, 0.9485346810487033, 0.9547938334603094, 0.9546850381126171, 0.9488116038474199, 0.9469157888011379, 0.9543477362415759, 0.9547829437635046, 0.9535465647232845, 0.949392725343168]","[0.9773323089500141, 0.9741204573377513, 0.9773354132028921, 0.977339033756824, 0.9743118009586853, 0.9733675632987406, 0.9771484608670923, 0.9773356880176429, 0.9767732475311359, 0.9746958065576166]","[0.9773414134979248, 0.9741314053535461, 0.9773414134979248, 0.9773414134979248, 0.9743202328681946, 0.9733761548995972, 0.9771525859832764, 0.9773414134979248, 0.9767749309539795, 0.9746978878974915]"
113
+ promoter_no_tata,500M HR,"[0.9094151340980179, 0.9039830556371735, 0.8982712761479322, 0.9037837778443935, 0.9058613600824835, 0.9026252876492826, 0.9037675786505464, 0.9093030255962823, 0.9111516080975791, 0.9063947490818405]","[0.9542644286486519, 0.9516238516973271, 0.9489969165306033, 0.9518503141185135, 0.9527734403535686, 0.9512734182996849, 0.9516324877323861, 0.9540661593530868, 0.9554181276937688, 0.9531625599461377]","[0.954305112361908, 0.9516616463661194, 0.949018120765686, 0.9518504738807678, 0.9527945518493652, 0.9512839913368225, 0.9516616463661194, 0.9541162848472595, 0.9554380774497986, 0.9531722068786621]"
114
+ splice_sites_acceptors,500M 1000G,"[0.9359730195381503, 0.9278981036000471, 0.9332179774862887, 0.9279249778201825, 0.9209348576820098, 0.9299669873960295, 0.9359865664034267, 0.9316076348462242, 0.9299669873960295, 0.9323406763858908]","[0.9679531820219585, 0.9638987993418373, 0.9666019006187399, 0.9638988875611629, 0.9602669300759257, 0.964782051658207, 0.9679599691036159, 0.96569044475953, 0.964782051658207, 0.9661544006915743]","[0.9679602980613708, 0.9638988971710205, 0.9666064977645874, 0.9638988971710205, 0.9602888226509094, 0.9648014307022095, 0.9679602980613708, 0.9657039642333984, 0.9648014307022095, 0.9661552309989929]"
115
+ splice_sites_acceptors,2.5B MS,"[0.9828546108127411, 0.9774688865636354, 0.9729638151656027, 0.9675063784861726, 0.9720304191195133, 0.9647992564481602, 0.9712491712392106, 0.9730543459650034, 0.9747343591918983, 0.9748078786682142]","[0.9914254881559769, 0.9887181335638582, 0.9864618181729319, 0.9837531892430863, 0.9860101893296128, 0.9823994281402646, 0.9855595550244651, 0.9864620828354361, 0.987363962202672, 0.9873645283080343]","[0.9914259910583496, 0.9887183904647827, 0.9864621162414551, 0.9837545156478882, 0.9860108494758606, 0.9824007153511047, 0.9855595827102661, 0.9864621162414551, 0.9873645901679993, 0.9873645901679993]"
116
+ splice_sites_acceptors,2.5B 1000G,"[0.9604356570203532, 0.9559368008339107, 0.9594266316073771, 0.9571377303887362, 0.9594447367954987, 0.9620982802169993, 0.966654407893604, 0.9657085884955419, 0.9557749939723439, 0.9611963826760266]","[0.9801379328327076, 0.9778805147714136, 0.979689166027625, 0.9783384856001272, 0.9796886364927905, 0.981045943304008, 0.9833029736843445, 0.9828510915607689, 0.9778857043819844, 0.9805931978840867]","[0.9801443815231323, 0.9778881072998047, 0.9796931147575378, 0.9783393144607544, 0.9796931147575378, 0.9810469150543213, 0.9833032488822937, 0.9828519821166992, 0.9778881072998047, 0.9805956482887268]"
117
+ splice_sites_acceptors,500M HR,"[0.9315430217380773, 0.9305048635936057, 0.9215971658451364, 0.9205797350137596, 0.9287509526897354, 0.9253045895248841, 0.9187659462154315, 0.9175259600331114, 0.9359865664034267, 0.9205745594061027]","[0.9656927930746766, 0.965250662526854, 0.9607279082771201, 0.9602867383512546, 0.96434227295401, 0.9625296747708272, 0.9593829731077157, 0.958481015132989, 0.9679599691036159, 0.960284150156413]","[0.9657039642333984, 0.965252697467804, 0.9607400894165039, 0.9602888226509094, 0.964350163936615, 0.9625450968742371, 0.9593862891197205, 0.9584837555885315, 0.9679602980613708, 0.9602888226509094]"
118
+ splice_sites_donors,2.5B MS,"[0.9717185449918906, 0.9690174332785975, 0.9745309861578075, 0.9735882608455478, 0.9717185449918906, 0.9771994945864604, 0.9762787015523723, 0.975413234094655, 0.9726275321405886, 0.9745100151875784]","[0.9858574258192305, 0.9844882246376812, 0.9872252138844209, 0.986769277199336, 0.9858574258192305, 0.9885946032909565, 0.9881385281385282, 0.9876817408407612, 0.9863137660702943, 0.9872254159607371]","[0.9858576655387878, 0.9844890236854553, 0.9872262477874756, 0.9867700934410095, 0.9858576655387878, 0.9885948896408081, 0.9881386756896973, 0.9876824617385864, 0.9863138794898987, 0.9872262477874756]"
119
+ splice_sites_donors,500M 1000G,"[0.9462323027566195, 0.9397874311892406, 0.9425209177967593, 0.9462357899545045, 0.9464511297356138, 0.9425217790605105, 0.9399340907250145, 0.9406969547060855, 0.9419540258738198, 0.9435845433284517]","[0.9730819191912254, 0.9698904858830433, 0.9712586395681138, 0.9730836671130938, 0.9730778398238885, 0.9712590702529005, 0.9698862742257379, 0.9703466597847386, 0.9707950423518519, 0.9717113485150872]","[0.9730839133262634, 0.9698904752731323, 0.9712591171264648, 0.9730839133262634, 0.9730839133262634, 0.9712591171264648, 0.9698904752731323, 0.9703466892242432, 0.970802903175354, 0.9717153310775757]"
120
+ splice_sites_donors,500M HR,"[0.9480386353580473, 0.9365352234368435, 0.9416431422394904, 0.942538046221815, 0.935308514767802, 0.9379569913269884, 0.9418667094191522, 0.9361545727573551, 0.9453302835839623, 0.941611089827629]","[0.9739947862193846, 0.9680611999363888, 0.9708013640238704, 0.9712591181059689, 0.9676089430053345, 0.9689776889776889, 0.9707966959765522, 0.9680643907133646, 0.9726254583237588, 0.9708023120386349]","[0.9739963412284851, 0.9680656790733337, 0.970802903175354, 0.9712591171264648, 0.9676094651222229, 0.9689781069755554, 0.970802903175354, 0.9680656790733337, 0.9726277589797974, 0.970802903175354]"
121
+ splice_sites_donors,2.5B 1000G,"[0.9581055909600196, 0.9571497015864733, 0.9616923822826289, 0.954437794880907, 0.9562058622559801, 0.9543928387505772, 0.9554084634607375, 0.9580850576447345, 0.9572298143949046, 0.9589445830940206]","[0.9790128513815485, 0.9785583539981956, 0.9808388418055579, 0.9771896101171571, 0.9781021168619695, 0.9771890973875688, 0.9776454224502746, 0.9790131833640681, 0.9785560332491385, 0.9794704568343668]","[0.9790145754814148, 0.978558361530304, 0.9808394312858582, 0.9771897792816162, 0.9781022071838379, 0.9771897792816162, 0.977645993232727, 0.9790145754814148, 0.978558361530304, 0.9794707894325256]"
122
+ splice_sites_all,500M HR,"[0.9570148338448877, 0.9531849358180634, 0.9560020713400652, 0.9635102774977736, 0.9560305934684943, 0.955500637000637, 0.9580317752474939, 0.9525020637567072, 0.9535076280915372, 0.9545813019698075]","[0.9713497452785429, 0.9686681907814902, 0.9706677771262773, 0.975679722875566, 0.9706469819646147, 0.9703326493326494, 0.9719762454343682, 0.9683307733725174, 0.9689857803255914, 0.9697047968304612]","[0.9713333249092102, 0.968666672706604, 0.9706666469573975, 0.9756666421890259, 0.9706666469573975, 0.9703333377838135, 0.972000002861023, 0.9683333039283752, 0.968999981880188, 0.9696666598320007]"
123
+ splice_sites_all,2.5B MS,"[0.9685450383914522, 0.9695244000044373, 0.9725021070901814, 0.9750245384263294, 0.9715195925093421, 0.9755177220662611, 0.9760253769897069, 0.9735063278116963, 0.9725077800933613, 0.9705156901304868]","[0.979016976059549, 0.97968468233026, 0.9816664644718425, 0.9833445951135191, 0.9810124102087422, 0.9836801618912029, 0.984017531802513, 0.982340886752462, 0.9816731997851686, 0.980331890947403]","[0.9789999723434448, 0.9796666502952576, 0.9816666841506958, 0.9833333492279053, 0.9810000061988831, 0.9836666584014893, 0.9839999675750732, 0.9823333024978638, 0.9816666841506958, 0.9803333282470703]"
124
+ splice_sites_all,500M 1000G,"[0.9555434782174108, 0.9515030130976456, 0.9525528681513142, 0.9510391519176475, 0.954559343617183, 0.9530354218081114, 0.9520311001905843, 0.9575078196791246, 0.9570006380006381, 0.9526290899881327]","[0.9703311629844201, 0.9676602225147827, 0.9683421360911585, 0.9673026602710341, 0.9696903948729196, 0.9686798620096576, 0.9679869572024681, 0.9716674436845069, 0.9713309796643131, 0.9683757306573927]","[0.9703333377838135, 0.9676666855812073, 0.9683333039283752, 0.9673333168029785, 0.9696666598320007, 0.968666672706604, 0.9679999947547913, 0.9716666340827942, 0.9713333249092102, 0.9683333039283752]"
125
+ splice_sites_all,2.5B 1000G,"[0.9640281178968307, 0.9591689884898531, 0.9660049910386805, 0.966501933005799, 0.9670127324181326, 0.9630126797504257, 0.9620120252254735, 0.9645561066453523, 0.9605379419980783, 0.9646056301000606]","[0.9760183843025896, 0.9727391074799527, 0.9773267077802937, 0.9776679566258725, 0.9780077067415771, 0.9753431470910642, 0.9746555443334705, 0.976368210306069, 0.973658392587175, 0.9763761251024831]","[0.9760000109672546, 0.9726666808128357, 0.9773333072662354, 0.9776666760444641, 0.9779999852180481, 0.9753333330154419, 0.9746666550636292, 0.9763333201408386, 0.9736666679382324, 0.9763333201408386]"