gwaslab 3.4.47__py3-none-any.whl → 3.4.49__py3-none-any.whl
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.
Potentially problematic release.
This version of gwaslab might be problematic. Click here for more details.
- gwaslab/bd_common_data.py +3 -1
- gwaslab/data/reference.json +10 -2
- gwaslab/g_Sumstats.py +22 -2
- gwaslab/g_vchange_status.py +1 -1
- gwaslab/g_version.py +2 -2
- gwaslab/hm_harmonize_sumstats.py +23 -7
- gwaslab/io_preformat_input.py +73 -8
- gwaslab/io_read_ldsc.py +16 -2
- gwaslab/io_to_formats.py +5 -5
- gwaslab/qc_fix_sumstats.py +109 -7
- gwaslab/util_abf_finemapping.py +67 -0
- gwaslab/util_ex_ldsc.py +8 -1
- gwaslab/util_ex_run_clumping.py +6 -6
- gwaslab/util_in_fill_data.py +20 -2
- gwaslab/viz_aux_annotate_plot.py +2 -1
- gwaslab/viz_aux_quickfix.py +2 -1
- gwaslab/viz_plot_compare_effect.py +4 -2
- gwaslab/viz_plot_miamiplot2.py +10 -9
- gwaslab/viz_plot_mqqplot.py +42 -21
- gwaslab/viz_plot_regional2.py +75 -29
- gwaslab/viz_plot_stackedregional.py +37 -16
- {gwaslab-3.4.47.dist-info → gwaslab-3.4.49.dist-info}/METADATA +15 -15
- {gwaslab-3.4.47.dist-info → gwaslab-3.4.49.dist-info}/RECORD +27 -26
- {gwaslab-3.4.47.dist-info → gwaslab-3.4.49.dist-info}/WHEEL +1 -1
- {gwaslab-3.4.47.dist-info → gwaslab-3.4.49.dist-info}/LICENSE +0 -0
- {gwaslab-3.4.47.dist-info → gwaslab-3.4.49.dist-info}/LICENSE_before_v3.4.39 +0 -0
- {gwaslab-3.4.47.dist-info → gwaslab-3.4.49.dist-info}/top_level.txt +0 -0
|
@@ -57,7 +57,9 @@ def plot_stacked_mqq(objects,
|
|
|
57
57
|
fig_args=None,
|
|
58
58
|
region_hspace=0.05,
|
|
59
59
|
subplot_height=4,
|
|
60
|
+
region_lead_grids = None,
|
|
60
61
|
region_lead_grid_line=None,
|
|
62
|
+
region_ld_legends = None,
|
|
61
63
|
fontsize=9,
|
|
62
64
|
font_family="Arial",
|
|
63
65
|
build="99",
|
|
@@ -85,12 +87,18 @@ def plot_stacked_mqq(objects,
|
|
|
85
87
|
region_chromatin_height = len(region_chromatin_files) * region_chromatin_height
|
|
86
88
|
if region_chromatin_labels is None:
|
|
87
89
|
region_chromatin_labels = []
|
|
90
|
+
if region_ld_legends is None:
|
|
91
|
+
region_ld_legends = [0]
|
|
88
92
|
if title_args is None:
|
|
89
93
|
title_args = {"family":"Arial"}
|
|
90
94
|
else:
|
|
91
95
|
if "family" not in title_args.keys():
|
|
92
96
|
title_args["family"] = "Arial"
|
|
93
97
|
# create figure and axes ##################################################################################################################
|
|
98
|
+
#
|
|
99
|
+
# subplot_height : subplot height
|
|
100
|
+
# figsize : Width, height in inches
|
|
101
|
+
|
|
94
102
|
if mode=="r":
|
|
95
103
|
if len(vcfs)==1:
|
|
96
104
|
vcfs = vcfs *len(sumstats_list)
|
|
@@ -103,14 +111,17 @@ def plot_stacked_mqq(objects,
|
|
|
103
111
|
else:
|
|
104
112
|
height_ratios = [1 for i in range(n_plot_plus_gene_track-1)]+[gene_track_height]
|
|
105
113
|
|
|
106
|
-
|
|
114
|
+
if "figsize" not in fig_args.keys():
|
|
115
|
+
fig_args["figsize"] = [16,subplot_height*n_plot_plus_gene_track]
|
|
116
|
+
|
|
107
117
|
fig, axes = plt.subplots(n_plot_plus_gene_track, 1, sharex=True,
|
|
108
118
|
gridspec_kw={'height_ratios': height_ratios},
|
|
109
119
|
**fig_args)
|
|
110
120
|
plt.subplots_adjust(hspace=region_hspace)
|
|
111
121
|
elif mode=="m":
|
|
112
122
|
n_plot = len(sumstats_list)
|
|
113
|
-
|
|
123
|
+
if "figsize" not in fig_args.keys():
|
|
124
|
+
fig_args["figsize"] = [10,subplot_height*n_plot]
|
|
114
125
|
fig, axes = plt.subplots(n_plot, 1, sharex=True,
|
|
115
126
|
gridspec_kw={'height_ratios': [1 for i in range(n_plot)]},
|
|
116
127
|
**fig_args)
|
|
@@ -118,14 +129,16 @@ def plot_stacked_mqq(objects,
|
|
|
118
129
|
vcfs = [None for i in range(n_plot)]
|
|
119
130
|
elif mode=="mqq":
|
|
120
131
|
n_plot = len(objects)
|
|
121
|
-
|
|
122
|
-
|
|
132
|
+
if "figsize" not in fig_args.keys():
|
|
133
|
+
fig_args["figsize"] = [10,subplot_height*n_plot]
|
|
123
134
|
fig, axes = plt.subplots(n_plot, 2, sharex=True,
|
|
124
135
|
gridspec_kw={'height_ratios': [1 for i in range(n_plot-1)],
|
|
125
136
|
'width_ratios':[mqqratio,1]},
|
|
126
137
|
**fig_args)
|
|
127
138
|
plt.subplots_adjust(hspace=region_hspace)
|
|
128
|
-
|
|
139
|
+
|
|
140
|
+
if region_lead_grids is None:
|
|
141
|
+
region_lead_grids = [i for i in range(len(axes))]
|
|
129
142
|
##########################################################################################################################################
|
|
130
143
|
mqq_args_for_each_plot = _sort_args(mqq_args, n_plot)
|
|
131
144
|
##########################################################################################################################################
|
|
@@ -149,6 +162,10 @@ def plot_stacked_mqq(objects,
|
|
|
149
162
|
figax = (fig,axes[index],axes[-1])
|
|
150
163
|
elif mode=="mqq":
|
|
151
164
|
figax = (fig,axes[index,0],axes[index,1])
|
|
165
|
+
if index in region_ld_legends:
|
|
166
|
+
region_ld_legend = True
|
|
167
|
+
else:
|
|
168
|
+
region_ld_legend = False
|
|
152
169
|
#################################################################
|
|
153
170
|
if index==0:
|
|
154
171
|
# plot last m and gene track
|
|
@@ -164,6 +181,7 @@ def plot_stacked_mqq(objects,
|
|
|
164
181
|
fontsize=fontsize,
|
|
165
182
|
font_family=font_family,
|
|
166
183
|
region_lead_grid=False,
|
|
184
|
+
region_ld_legend=region_ld_legend,
|
|
167
185
|
gtf_path="default",
|
|
168
186
|
rr_ylabel=False,
|
|
169
187
|
figax=figax,
|
|
@@ -192,7 +210,7 @@ def plot_stacked_mqq(objects,
|
|
|
192
210
|
font_family=font_family,
|
|
193
211
|
mode=mode,
|
|
194
212
|
rr_ylabel=False,
|
|
195
|
-
region_ld_legend=
|
|
213
|
+
region_ld_legend=region_ld_legend,
|
|
196
214
|
gtf_path=None,
|
|
197
215
|
figax=figax,
|
|
198
216
|
_get_region_lead=True,
|
|
@@ -257,7 +275,7 @@ def plot_stacked_mqq(objects,
|
|
|
257
275
|
|
|
258
276
|
##########################################################################################################################################
|
|
259
277
|
# draw the line for lead variants
|
|
260
|
-
_draw_grid_line_for_lead_variants(mode, lead_variants_is,lead_variants_is_color, n_plot, axes, region_lead_grid_line,region_chromatin_files)
|
|
278
|
+
_draw_grid_line_for_lead_variants(mode, lead_variants_is,lead_variants_is_color, n_plot, axes, region_lead_grid_line,region_chromatin_files,region_lead_grids)
|
|
261
279
|
|
|
262
280
|
##########################################################################################################################################
|
|
263
281
|
_drop_old_y_labels(axes, n_plot)
|
|
@@ -275,21 +293,24 @@ def _drop_old_y_labels(axes, n_plot):
|
|
|
275
293
|
for index in range(n_plot):
|
|
276
294
|
axes[index].set_ylabel("")
|
|
277
295
|
|
|
278
|
-
def _draw_grid_line_for_lead_variants(mode, lead_variants_is,lead_variants_is_color, n_plot, axes, region_lead_grid_line,region_chromatin_files):
|
|
296
|
+
def _draw_grid_line_for_lead_variants(mode, lead_variants_is,lead_variants_is_color, n_plot, axes, region_lead_grid_line,region_chromatin_files,region_lead_grids):
|
|
279
297
|
if len(region_chromatin_files)>0:
|
|
280
298
|
n_plot_and_track = n_plot+2
|
|
281
299
|
else:
|
|
282
300
|
n_plot_and_track = n_plot+1
|
|
301
|
+
|
|
302
|
+
plotted=[None]
|
|
283
303
|
if mode=="r":
|
|
284
304
|
for index, sig_is in lead_variants_is.items():
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
305
|
+
if index in region_lead_grids:
|
|
306
|
+
for j, sig_i in enumerate(sig_is):
|
|
307
|
+
try:
|
|
308
|
+
region_lead_grid_line["color"] = lead_variants_is_color[index][j]
|
|
309
|
+
except:
|
|
310
|
+
pass
|
|
311
|
+
if sig_i not in plotted:
|
|
312
|
+
for each_axis_index in range(n_plot_and_track):
|
|
313
|
+
axes[each_axis_index].axvline(x=sig_i, zorder=2,**region_lead_grid_line)
|
|
293
314
|
|
|
294
315
|
def _add_new_y_label(mode, fig, gene_track_height,n_plot,subplot_height ,fontsize,font_family):
|
|
295
316
|
gene_track_height_ratio = gene_track_height/(gene_track_height + n_plot*subplot_height)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gwaslab
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.49
|
|
4
4
|
Summary: A collection of handy tools for GWAS SumStats
|
|
5
5
|
Author-email: Yunye <yunye@gwaslab.com>
|
|
6
6
|
Project-URL: Homepage, https://cloufield.github.io/gwaslab/
|
|
@@ -12,19 +12,19 @@ Requires-Python: <3.11,>=3.9
|
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
License-File: LICENSE_before_v3.4.39
|
|
15
|
-
Requires-Dist: pandas
|
|
16
|
-
Requires-Dist: numpy
|
|
17
|
-
Requires-Dist: matplotlib
|
|
18
|
-
Requires-Dist: seaborn
|
|
19
|
-
Requires-Dist: scipy
|
|
20
|
-
Requires-Dist: pySAM
|
|
21
|
-
Requires-Dist: Biopython
|
|
22
|
-
Requires-Dist: adjustText
|
|
23
|
-
Requires-Dist: liftover
|
|
24
|
-
Requires-Dist: scikit-allel
|
|
25
|
-
Requires-Dist: pyensembl
|
|
26
|
-
Requires-Dist: gtfparse
|
|
27
|
-
Requires-Dist: h5py
|
|
15
|
+
Requires-Dist: pandas!=1.5,>=1.3
|
|
16
|
+
Requires-Dist: numpy<2,>=1.21.2
|
|
17
|
+
Requires-Dist: matplotlib!=3.7.2,<3.9,>=3.5
|
|
18
|
+
Requires-Dist: seaborn>=0.12
|
|
19
|
+
Requires-Dist: scipy>=1.12
|
|
20
|
+
Requires-Dist: pySAM==0.22.1
|
|
21
|
+
Requires-Dist: Biopython>=1.79
|
|
22
|
+
Requires-Dist: adjustText<=0.8,>=0.7.3
|
|
23
|
+
Requires-Dist: liftover>=1.1.13
|
|
24
|
+
Requires-Dist: scikit-allel>=1.3.5
|
|
25
|
+
Requires-Dist: pyensembl==2.2.3
|
|
26
|
+
Requires-Dist: gtfparse==1.3.0
|
|
27
|
+
Requires-Dist: h5py>=3.10.0
|
|
28
28
|
|
|
29
29
|
# GWASLab
|
|
30
30
|
|
|
@@ -51,7 +51,7 @@ Warning: Known issues of GWASLab are summarized in [https://cloufield.github.io/
|
|
|
51
51
|
### install via pip
|
|
52
52
|
|
|
53
53
|
```
|
|
54
|
-
pip install gwaslab==3.4.
|
|
54
|
+
pip install gwaslab==3.4.46
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
```python
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
gwaslab/__init__.py,sha256=7TKJaODdpeuQKibL7gIEa4MtyQ0pmrU-vIHQ-Et27lQ,2433
|
|
2
|
-
gwaslab/bd_common_data.py,sha256=
|
|
2
|
+
gwaslab/bd_common_data.py,sha256=2voBqMrIsII1TN5T6uvyDax90fWcJK1Stmo1ZHNGGsE,13898
|
|
3
3
|
gwaslab/bd_config.py,sha256=TP-r-DPhJD3XnRYZbw9bQHXaDIkiRgK8bG9HCt-UaLc,580
|
|
4
4
|
gwaslab/bd_download.py,sha256=cDDk2C5IvjeAzvPvVYGTkI4Ss33DUtEDjGo8eAbQRvY,15663
|
|
5
5
|
gwaslab/bd_get_hapmap3.py,sha256=asNjQYeGfQi8u3jnfenRvDdKMs5ptql5wpcUzqMlwUI,3937
|
|
6
6
|
gwaslab/cache_manager.py,sha256=HOTnSkCOyGEPLRl90WT8D_6pAdI8d8AzenMIDGuCeWc,28113
|
|
7
7
|
gwaslab/g_Log.py,sha256=C3Zv-_6c3C9ms8bgQ-ytplz22sjk7euqXYkWr9zNeAs,1573
|
|
8
8
|
gwaslab/g_Phenotypes.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
gwaslab/g_Sumstats.py,sha256=
|
|
9
|
+
gwaslab/g_Sumstats.py,sha256=qWBh14-XheS88KLm2vr0OKRAhU9VmbUvy90T4L52zAo,36265
|
|
10
10
|
gwaslab/g_SumstatsPair.py,sha256=20snPb4SlI6ftMGVjgxAuyxsxYRQF-GzzlBSnoB-3Lo,8851
|
|
11
11
|
gwaslab/g_SumstatsT.py,sha256=u_DighLMnMxwTLnqm-B58pA0G6WXRj6pudPyKMVKjSU,2133
|
|
12
12
|
gwaslab/g_Sumstats_summary.py,sha256=FECvvFXJVKaCX5dggBvvk9YvJ6AbdbcLfjltysX7wEE,6380
|
|
13
13
|
gwaslab/g_meta.py,sha256=htWlgURWclm9R6UqFcX1a93WN27xny7lGUeyJZOtszQ,2583
|
|
14
|
-
gwaslab/g_vchange_status.py,sha256=
|
|
15
|
-
gwaslab/g_version.py,sha256=
|
|
14
|
+
gwaslab/g_vchange_status.py,sha256=w3zsYYOcCaI3PTeboonvkQjudzUAfVIgATzRdiPViZs,1939
|
|
15
|
+
gwaslab/g_version.py,sha256=dhN-3rbJKALlFhTZACsxBZL_U8j4PQmcVuCuWx9dapo,1886
|
|
16
16
|
gwaslab/hm_casting.py,sha256=FqP4EQl83Q2OKLw004OgLIvUH795TVCGwziLk5jsHqY,11368
|
|
17
|
-
gwaslab/hm_harmonize_sumstats.py,sha256=
|
|
17
|
+
gwaslab/hm_harmonize_sumstats.py,sha256=_sZ8soikAxDokw-dcr_CLguBB8OmTmPPS04MfmsJc_Q,79509
|
|
18
18
|
gwaslab/hm_rsid_to_chrpos.py,sha256=ODWREO0jPN0RAfNzL5fRzSRANfhiksOvUVPuEsFZQqA,6552
|
|
19
|
-
gwaslab/io_preformat_input.py,sha256=
|
|
20
|
-
gwaslab/io_read_ldsc.py,sha256=
|
|
19
|
+
gwaslab/io_preformat_input.py,sha256=J8Ny4OPMaLVdo2nP8lTM-c5A8LSdqphSrp9G4i9JjDQ,24097
|
|
20
|
+
gwaslab/io_read_ldsc.py,sha256=wsYXpH50IchBKd2dhYloSqc4YgnDkiwMsAweaCoN5Eo,12471
|
|
21
21
|
gwaslab/io_read_tabular.py,sha256=EG-C6KhCutt4J4LlOMgXnqzJvU-EZXzVhMvaDFnHrMM,2380
|
|
22
|
-
gwaslab/io_to_formats.py,sha256=
|
|
22
|
+
gwaslab/io_to_formats.py,sha256=8FmbQjWUIsz_V1Lb80TuwRIXKBgs5t42j25Znougk1Y,29401
|
|
23
23
|
gwaslab/io_to_pickle.py,sha256=HhePU0VcaGni0HTNU0BqoRaOnrr0NOxotgY6ISdx3Ck,1833
|
|
24
24
|
gwaslab/ldsc_irwls.py,sha256=83JbAMAhD0KOfpv4IJa6LgUDfQjp4XSJveTjnhCBJYQ,6142
|
|
25
25
|
gwaslab/ldsc_jackknife.py,sha256=XrWHoKS_Xn9StG1I83S2vUMTertsb-GH-_gOFYUhLeU,17715
|
|
@@ -28,58 +28,59 @@ gwaslab/ldsc_parse.py,sha256=MBnfgcWlV4oHp9MoDRh1mpilaHhAR15Af77hMFn4-5k,10564
|
|
|
28
28
|
gwaslab/ldsc_regressions.py,sha256=yzbGjgNV7u-SWXNPsh9S8y9mK97Bim_Nmad9G9V18ZU,30078
|
|
29
29
|
gwaslab/ldsc_sumstats.py,sha256=O0olsDxKlh1MJ1gAuEN1t40rxhajOEwOQ20ak7xoDrI,26245
|
|
30
30
|
gwaslab/qc_check_datatype.py,sha256=kW68uk4dTLOU2b1dHoVat6n0loundDysAjIqxsXW28Q,3379
|
|
31
|
-
gwaslab/qc_fix_sumstats.py,sha256
|
|
31
|
+
gwaslab/qc_fix_sumstats.py,sha256=rb1Iv05o0tYGGTiXXXJphkx-xVQNKAtlwkDfY-D0yPs,97979
|
|
32
32
|
gwaslab/run_script.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
gwaslab/util_abf_finemapping.py,sha256=LRcopjtkT-iXtKPAJIzR4qjPdhD7nrS_BGit4EW89FM,3054
|
|
33
34
|
gwaslab/util_ex_calculate_ldmatrix.py,sha256=Z_spxbq6SHDS0v84I59YTTF40iyLQIOZbt0dmEcNJjw,15417
|
|
34
35
|
gwaslab/util_ex_calculate_prs.py,sha256=9uJ588Sdj4V0vw3OZ9NeLECwOvW67f0IdLandVPS5RY,9442
|
|
35
36
|
gwaslab/util_ex_gwascatalog.py,sha256=--Gde9HrsikfYTeFqSaYz0gUODr9wmv_gV6GZGNlElg,7688
|
|
36
37
|
gwaslab/util_ex_ldproxyfinder.py,sha256=wWNW9wITWozj23gT41LR00WxU-rrHpGKbxs2H_3jEyM,9431
|
|
37
|
-
gwaslab/util_ex_ldsc.py,sha256=
|
|
38
|
+
gwaslab/util_ex_ldsc.py,sha256=dd3QUNX7eOJY_z4mkKIE9Ey_SQGE4ox0efhq28ah_LE,18592
|
|
38
39
|
gwaslab/util_ex_plink_filter.py,sha256=pK1Yxtv9-J4rMOdVAG7VU9PktvI6-y4FxBiVEH0QuRs,1673
|
|
39
40
|
gwaslab/util_ex_process_h5.py,sha256=ynFvo3zxgvOxWYL565v2IQf8P6iEuq7UlKQ_ULxrd6Y,2831
|
|
40
41
|
gwaslab/util_ex_process_ref.py,sha256=GQ0ZEWLxGpHLdBs3tqnAqKn3Pqx1A1YvNbYrBLBvXeg,17126
|
|
41
42
|
gwaslab/util_ex_run_2samplemr.py,sha256=5c0DGF694T9j0Y58L2I7pr1_Z1hfpaatIgix7P5oPA8,9127
|
|
42
|
-
gwaslab/util_ex_run_clumping.py,sha256=
|
|
43
|
+
gwaslab/util_ex_run_clumping.py,sha256=bs9CJENMhwVXolCNygaYtso5ikPrdPMiV13tGA0ttxg,7915
|
|
43
44
|
gwaslab/util_ex_run_coloc.py,sha256=u57h8wPbTCOf6aY5u5DpzK1gv7inuDT8a15UGo-1ras,6288
|
|
44
45
|
gwaslab/util_ex_run_susie.py,sha256=TXqiwBVq1io7XSlLF2_gNsYgxDLiKNnYE9pIjRWJ1Hc,5315
|
|
45
46
|
gwaslab/util_in_calculate_gc.py,sha256=MWOXVzJv7SZx4i2_ncRiqsiEOADc7EfghaUzgGy4jaE,2219
|
|
46
47
|
gwaslab/util_in_calculate_power.py,sha256=JfHJFg3tNF0f4NHgWlzVW2mSxCiP07mAHIyEfVfxTak,10360
|
|
47
48
|
gwaslab/util_in_convert_h2.py,sha256=a8Cbudt3xn9WP2bPc-7ysuowB-LYub8j8GeDXl7Lk7Q,6483
|
|
48
49
|
gwaslab/util_in_correct_winnerscurse.py,sha256=Gp--yAQ8MMzdkWIvXP9C1BHVjZc-YzqHfYWhAj19w9w,2110
|
|
49
|
-
gwaslab/util_in_fill_data.py,sha256=
|
|
50
|
+
gwaslab/util_in_fill_data.py,sha256=iVq5WLWwFI03v9HyvBanu5si3j2p-oyPFTl8jsX69xM,14693
|
|
50
51
|
gwaslab/util_in_filter_value.py,sha256=dY4X66N9A4MHCRHjPqLYFufMM91ggLRwUBf_nJYh8Lg,23605
|
|
51
52
|
gwaslab/util_in_get_density.py,sha256=kpKXH69acMkeYVG5vs-VbJC3COhmuLBfYco-wuOxgjc,3934
|
|
52
53
|
gwaslab/util_in_get_sig.py,sha256=9kq1GXacknO2YnVmsTli1GlPA728ASweTZ3UKm3Wszo,38783
|
|
53
54
|
gwaslab/util_in_meta.py,sha256=5K9lIZcIgUy0AERqHy1GvMN2X6dp45JUUgopuDLgt4o,11284
|
|
54
55
|
gwaslab/util_in_snphwe.py,sha256=-KpIDx6vn_nah6H55IkV2OyjXQVXV13XyBL069WE1wM,1751
|
|
55
|
-
gwaslab/viz_aux_annotate_plot.py,sha256=
|
|
56
|
+
gwaslab/viz_aux_annotate_plot.py,sha256=UTOx-OpFsM_UVphBHxqQZwCFI8bjwwB6CMsgFbAfheQ,32215
|
|
56
57
|
gwaslab/viz_aux_chromatin.py,sha256=7cGmej5EkKO7fxR1b5w8r1oRRl9ofVzFRG52SCYWtz0,4109
|
|
57
|
-
gwaslab/viz_aux_quickfix.py,sha256=
|
|
58
|
+
gwaslab/viz_aux_quickfix.py,sha256=5XM-J9D2yp5FVbK6YQKEhSCqAYBLNWSQms9WjpXxVn8,18313
|
|
58
59
|
gwaslab/viz_aux_reposition_text.py,sha256=iRIP-Rkltlei068HekJcVubiqPrunBqvAoSQ1eHk04M,4304
|
|
59
60
|
gwaslab/viz_aux_save_figure.py,sha256=nL-aoE8Kg06h7FgleGRBIZjhI-6w5gpn3E1HWMwBig8,2664
|
|
60
61
|
gwaslab/viz_plot_compare_af.py,sha256=qtXW45-Sq_ugK8ZfqBYMpmf58SKi3lB3YyHnzn_akcE,5344
|
|
61
|
-
gwaslab/viz_plot_compare_effect.py,sha256=
|
|
62
|
+
gwaslab/viz_plot_compare_effect.py,sha256=lV-4KSQatTSsYqzEGGTkBu17I2VlVyVh1uJr-kCq630,49585
|
|
62
63
|
gwaslab/viz_plot_forestplot.py,sha256=xgOnefh737CgdQxu5naVyRNBX1NQXPFKzf51fbh6afs,6771
|
|
63
64
|
gwaslab/viz_plot_miamiplot.py,sha256=rCFEp7VNuVqeBBG3WRkmFAtFklbF79BvIQQYiSY70VY,31238
|
|
64
|
-
gwaslab/viz_plot_miamiplot2.py,sha256=
|
|
65
|
-
gwaslab/viz_plot_mqqplot.py,sha256=
|
|
65
|
+
gwaslab/viz_plot_miamiplot2.py,sha256=xiFCgFX8hEySmCJORpEurMVER9eEXQyy_Ik7mLkbi9g,16015
|
|
66
|
+
gwaslab/viz_plot_mqqplot.py,sha256=q_c_ZDRdirEcdHHnb030h7dTUWAFy9OVuzwbdCzZ3gU,64580
|
|
66
67
|
gwaslab/viz_plot_qqplot.py,sha256=psQgVpP29686CEZkzQz0iRbApzqy7aE3GGiBcazVvNw,7247
|
|
67
|
-
gwaslab/viz_plot_regional2.py,sha256=
|
|
68
|
+
gwaslab/viz_plot_regional2.py,sha256=tBoGox-4ngL5o_twdIjk_VW6Iam3JDyrPKuttm6_4Sg,36862
|
|
68
69
|
gwaslab/viz_plot_regionalplot.py,sha256=8u-5-yfy-UaXhaxVVz3Y5k2kBAoqzczUw1hyyD450iI,37983
|
|
69
70
|
gwaslab/viz_plot_rg_heatmap.py,sha256=PidUsgOiEVt6MfBPCF3_yDhOEytZ-I1q-ZD6_0pFrV4,13713
|
|
70
|
-
gwaslab/viz_plot_stackedregional.py,sha256=
|
|
71
|
+
gwaslab/viz_plot_stackedregional.py,sha256=IRugpwLjqKdwuSVTQtCM36Rk4Gpv6MxdsGIWVj6vk8w,16651
|
|
71
72
|
gwaslab/viz_plot_trumpetplot.py,sha256=ZHdc6WcVx0-oKoj88yglRkmB4bS9pOiEMcuwKW35Yvo,42672
|
|
72
73
|
gwaslab/data/formatbook.json,sha256=N2nJs80HH98Rsu9FxaSvIQO9J5yIV97WEtAKjRqYwiY,38207
|
|
73
|
-
gwaslab/data/reference.json,sha256=
|
|
74
|
+
gwaslab/data/reference.json,sha256=IrjwFnXjrpVUp3zYfcYClpibJE9Y-94gtrC1Aw8sXxg,12332
|
|
74
75
|
gwaslab/data/chrx_par/chrx_par_hg19.bed.gz,sha256=LocZg_ozhZjQiIpgWCO4EYCW9xgkEKpRy1m-YdIpzQs,83
|
|
75
76
|
gwaslab/data/chrx_par/chrx_par_hg38.bed.gz,sha256=VFW11MnQVC-Iu-ZGvUDcEhVpb-HVRsVTg-W-GNJyxP4,82
|
|
76
77
|
gwaslab/data/hapmap3_SNPs/hapmap3_db150_hg19.snplist.gz,sha256=qD9RsC5S2h6l-OdpW09DWXHIi2kcPebctMnhxt8mzfU,10282886
|
|
77
78
|
gwaslab/data/hapmap3_SNPs/hapmap3_db151_hg38.snplist.gz,sha256=Y8ZT2FIAhbhlgCJdE9qQVAiwnV_fcsPt72usBa7RSBM,10225828
|
|
78
79
|
gwaslab/data/high_ld/high_ld_hla_hg19.bed.gz,sha256=R7IkssKu0L4WwkU9SrS84xCMdrkkKL0gnTNO_OKbG0Y,219
|
|
79
80
|
gwaslab/data/high_ld/high_ld_hla_hg38.bed.gz,sha256=76CIU0pibDJ72Y6UY-TbIKE9gEPwTELAaIbCXyjm80Q,470
|
|
80
|
-
gwaslab-3.4.
|
|
81
|
-
gwaslab-3.4.
|
|
82
|
-
gwaslab-3.4.
|
|
83
|
-
gwaslab-3.4.
|
|
84
|
-
gwaslab-3.4.
|
|
85
|
-
gwaslab-3.4.
|
|
81
|
+
gwaslab-3.4.49.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
82
|
+
gwaslab-3.4.49.dist-info/LICENSE_before_v3.4.39,sha256=GhLOU_1UDEKeOacYhsRN_m9u-eIuVTazSndZPeNcTZA,1066
|
|
83
|
+
gwaslab-3.4.49.dist-info/METADATA,sha256=bA0qeWgxt5mOkt_aL4aW_v4csyNSJCsbY6wrKMLyqY8,7752
|
|
84
|
+
gwaslab-3.4.49.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
85
|
+
gwaslab-3.4.49.dist-info/top_level.txt,sha256=PyY6hWtrALpv2MAN3kjkIAzJNmmBTH5a2risz9KwH08,8
|
|
86
|
+
gwaslab-3.4.49.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|