gsMap 1.72.3__py3-none-any.whl → 1.73.1__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.
@@ -0,0 +1,177 @@
1
+ Metadata-Version: 2.4
2
+ Name: gsMap
3
+ Version: 1.73.1
4
+ Summary: Genetics-informed pathogenic spatial mapping
5
+ Author-email: liyang <songliyang@westlake.edu.cn>, wenhao <chenwenhao@westlake.edu.cn>
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Operating System :: POSIX :: Linux
15
+ License-File: LICENSE
16
+ Requires-Dist: numpy < 2.0.0
17
+ Requires-Dist: pandas
18
+ Requires-Dist: scipy
19
+ Requires-Dist: scikit-learn
20
+ Requires-Dist: matplotlib
21
+ Requires-Dist: seaborn
22
+ Requires-Dist: tqdm
23
+ Requires-Dist: pyyaml
24
+ Requires-Dist: torch
25
+ Requires-Dist: torch-geometric
26
+ Requires-Dist: pyranges
27
+ Requires-Dist: pyfiglet
28
+ Requires-Dist: plotly
29
+ Requires-Dist: kaleido
30
+ Requires-Dist: jinja2
31
+ Requires-Dist: scanpy >=1.8.0
32
+ Requires-Dist: zarr>=2,<3
33
+ Requires-Dist: bitarray >=2.9.2, <3.0.0
34
+ Requires-Dist: pyarrow
35
+ Requires-Dist: scikit-misc
36
+ Requires-Dist: sphinx ; extra == "doc"
37
+ Requires-Dist: sphinx-argparse ; extra == "doc"
38
+ Requires-Dist: sphinx-autobuild ; extra == "doc"
39
+ Requires-Dist: sphinx-autodoc-typehints ; extra == "doc"
40
+ Requires-Dist: sphinx-basic-ng ; extra == "doc"
41
+ Requires-Dist: sphinx-charts ; extra == "doc"
42
+ Requires-Dist: sphinx-copybutton ; extra == "doc"
43
+ Requires-Dist: sphinx_inline_tabs ; extra == "doc"
44
+ Requires-Dist: sphinx-markdown-tables ; extra == "doc"
45
+ Requires-Dist: sphinx-rtd-theme ; extra == "doc"
46
+ Requires-Dist: sphinxcontrib-applehelp ; extra == "doc"
47
+ Requires-Dist: sphinxcontrib-devhelp ; extra == "doc"
48
+ Requires-Dist: sphinxcontrib-htmlhelp ; extra == "doc"
49
+ Requires-Dist: sphinxcontrib-jquery ; extra == "doc"
50
+ Requires-Dist: sphinxcontrib-jsmath ; extra == "doc"
51
+ Requires-Dist: sphinxcontrib-qthelp ; extra == "doc"
52
+ Requires-Dist: sphinxcontrib-serializinghtml ; extra == "doc"
53
+ Requires-Dist: furo ; extra == "doc"
54
+ Requires-Dist: myst-parser ; extra == "doc"
55
+ Requires-Dist: nbsphinx ; extra == "doc"
56
+ Requires-Dist: pytest>=7.0.0 ; extra == "tests"
57
+ Requires-Dist: pytest-cov>=4.0.0 ; extra == "tests"
58
+ Requires-Dist: coverage ; extra == "tests"
59
+ Project-URL: Documentation, https://yanglab.westlake.edu.cn/gsmap/document/software
60
+ Project-URL: Home, https://github.com/JianYang-Lab/gsMap
61
+ Project-URL: Website, https://yanglab.westlake.edu.cn/gsmap/home
62
+ Provides-Extra: doc
63
+ Provides-Extra: tests
64
+
65
+ # gsMap
66
+
67
+ | | | | |
68
+ | ------------- | ---------------------------------------------------------------------------------------------------- | -------------- | -------------------------------------------------------------------------------------------------- |
69
+ | __Version__ | [![PyPI version][pypi-badge]][pypi-url] [![Python][python-badge]][python-url] | __Status__ | [![Project Status][status-badge]][status-url] [![Maintenance][maintenance-badge]][maintenance-url] |
70
+ | __Activity__ | [![GitHub commits][commits-badge]][commits-url] [![Last Commit][last-commit-badge]][last-commit-url] | __Quality__ | [![codecov][codecov-badge]][codecov-url] [![Ruff][ruff-badge]][ruff-url] |
71
+ | __CI/CD__ | [![Docs][docs-badge]][docs-url] [![test][test-badge]][test-url] | __Community__ | [![GitHub stars][stars-badge]][stars-url] [![GitHub forks][forks-badge]][forks-url] |
72
+ | __Downloads__ | [![Downloads][downloads-badge]][downloads-url] | __License__ | [![License: MIT][license-badge]][license-url] [![DOI][doi-badge]][doi-url] |
73
+ | __Platform__ | [![Linux][linux-badge]][linux-url] | __Contribute__ | [![Issues][issues-badge]][issues-url] [![PRs Welcome][pr-badge]][pr-url] |
74
+
75
+ ## Introduction
76
+
77
+ `gsMap` (genetically informed spatial mapping of cells for complex traits)
78
+ integrates spatial transcriptomics (ST) data with genome-wide association study (GWAS)
79
+ summary statistics to map cells to human complex traits, including diseases,
80
+ in a spatially resolved manner.
81
+
82
+ ## Key Features
83
+
84
+ - __Spatially-aware High-Resolution Trait Mapping__
85
+ - __Spatial Region Identification__
86
+ - __Putative Causal Genes Identification__
87
+
88
+ ![Model Architecture](schematic.png)
89
+
90
+ ## Installation
91
+
92
+ Install using pip:
93
+
94
+ ```bash
95
+ conda create -n gsMap python>=3.10
96
+ conda activate gsMap
97
+ pip install gsMap
98
+ ```
99
+
100
+ Install using conda:
101
+
102
+ ```bash
103
+ conda create -n gsMap python>=3.10
104
+ conda activate gsMap
105
+ conda install bioconda::gsmap
106
+ ```
107
+
108
+ Install from source:
109
+
110
+ ```bash
111
+ git clone https://github.com/JianYang-Lab/gsMap
112
+ cd gsMap
113
+ pip install -e .
114
+ ```
115
+
116
+ Verify the installation by running the following command:
117
+
118
+ ```bash
119
+ gsmap --help
120
+ ```
121
+
122
+ ## Usage
123
+
124
+ Please check out the documentation and tutorials at [gsMap Documentation](https://yanglab.westlake.edu.cn/gsmap/document/software).
125
+
126
+ ## Online Visualization
127
+
128
+ To visualize the traits-cell association spatial maps,
129
+ please refer to [gsMap Visualization](https://yanglab.westlake.edu.cn/gsmap/visualize).
130
+
131
+ ## Citation
132
+
133
+ Song, L., Chen, W., Hou, J., Guo, M. & Yang, J.
134
+ [Spatially resolved mapping of cells associated with human complex traits.](https://doi.org/10.1038/s41586-025-08757-x)
135
+ Nature (2025).
136
+
137
+ Please cite the paper and give us a STAR if you find gsMap useful for your research.
138
+
139
+ <!-- Badge links -->
140
+
141
+ [codecov-badge]: https://codecov.io/gh/JianYang-Lab/gsMap/graph/badge.svg?token=NFZFXZIEUU
142
+ [codecov-url]: https://codecov.io/gh/JianYang-Lab/gsMap
143
+ [commits-badge]: https://img.shields.io/github/commit-activity/m/JianYang-Lab/gsMap
144
+ [commits-url]: https://github.com/JianYang-Lab/gsMap/commits/main
145
+ [docs-badge]: https://github.com/JianYang-Lab/gsMap/actions/workflows/docs.yml/badge.svg
146
+ [docs-url]: https://github.com/JianYang-Lab/gsMap/actions/workflows/docs.yml
147
+ [doi-badge]: https://img.shields.io/badge/DOI-10.1038%2Fs41586--025--08757--x-blue
148
+ [doi-url]: https://doi.org/10.1038/s41586-025-08757-x
149
+ [downloads-badge]: https://static.pepy.tech/badge/gsMap
150
+ [downloads-url]: https://pepy.tech/project/gsMap
151
+ [forks-badge]: https://img.shields.io/github/forks/JianYang-Lab/gsMap
152
+ [forks-url]: https://github.com/JianYang-Lab/gsMap/network/members
153
+ [issues-badge]: https://img.shields.io/github/issues/JianYang-Lab/gsMap
154
+ [issues-url]: https://github.com/JianYang-Lab/gsMap/issues
155
+ [last-commit-badge]: https://img.shields.io/github/last-commit/JianYang-Lab/gsMap
156
+ [last-commit-url]: https://github.com/JianYang-Lab/gsMap/commits/main
157
+ [license-badge]: https://img.shields.io/badge/License-MIT-yellow.svg
158
+ [license-url]: https://opensource.org/licenses/MIT
159
+ [linux-badge]: https://img.shields.io/badge/Linux-%E2%9C%93-success
160
+ [linux-url]: https://github.com/JianYang-Lab/gsMap/actions/workflows/test_linux.yml
161
+ [maintenance-badge]: https://img.shields.io/badge/Maintained%3F-yes-green.svg
162
+ [maintenance-url]: https://github.com/JianYang-Lab/gsMap/graphs/commit-activity
163
+ [pr-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg
164
+ [pr-url]: https://github.com/JianYang-Lab/gsMap/pulls
165
+ [pypi-badge]: https://img.shields.io/pypi/v/gsMap
166
+ [pypi-url]: https://pypi.org/project/gsMap/
167
+ [python-badge]: https://img.shields.io/pypi/pyversions/gsMap
168
+ [python-url]: https://www.python.org
169
+ [ruff-badge]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
170
+ [ruff-url]: https://github.com/astral-sh/ruff
171
+ [stars-badge]: https://img.shields.io/github/stars/JianYang-Lab/gsMap
172
+ [stars-url]: https://github.com/JianYang-Lab/gsMap/stargazers
173
+ [status-badge]: https://www.repostatus.org/badges/latest/active.svg
174
+ [status-url]: https://www.repostatus.org/#active
175
+ [test-badge]: https://github.com/JianYang-Lab/gsMap/actions/workflows/test_linux.yml/badge.svg
176
+ [test-url]: https://github.com/JianYang-Lab/gsMap/actions/workflows/test_linux.yml
177
+
@@ -0,0 +1,31 @@
1
+ gsMap/__init__.py,sha256=JH9MEzz0OCzOzCkWe26fsjrbx9Bstvsy68Pjx82trOA,77
2
+ gsMap/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
+ gsMap/cauchy_combination_test.py,sha256=SiUyqJKr4ATFtRgsCEJ43joGcSagCOnnurkB1FlQiB4,5105
4
+ gsMap/config.py,sha256=LmBVMb0eda6bfrKkQuh7eZnZdvgecjCnozRd_clqvlY,51584
5
+ gsMap/create_slice_mean.py,sha256=Nnmb7ACtS-9TurW5xQ4TqCinejPsYcvuT5Oxqa5Uges,5723
6
+ gsMap/diagnosis.py,sha256=rQIjtM5inqrLlNULC88JVEO1XA64XOQWEgaKLx2oA_g,12553
7
+ gsMap/find_latent_representation.py,sha256=aZ5fFY2RhAsNaDeoehd5lN28556d6GGHK9xEUTvo6G4,5365
8
+ gsMap/format_sumstats.py,sha256=1c9OgbqDQWOgXeSrbAhbJfChv_2IwXIgLE6Pbw2sx0s,13778
9
+ gsMap/generate_ldscore.py,sha256=xxzbaANl638bRvRAowrTPmFA4dEC0zDBv6i8KQTJvJ8,45094
10
+ gsMap/latent_to_gene.py,sha256=sDPvOU4iF-HkfQY0nnkIVXpjyTQ9-PjQflwEFWrPg-A,12869
11
+ gsMap/main.py,sha256=SzfAXhrlr4LXnSD4gkvAtUUPYXyra6a_MzVCxDBZjr0,1170
12
+ gsMap/report.py,sha256=_1FYkzGhVGMnvHgEQ8z51iMrVEVlh48a31jLqbV2o9w,6953
13
+ gsMap/run_all_mode.py,sha256=LhMTT85B6yoDG9MvKmclQWYdQyNIP0FFdHpYVGTCJTs,9381
14
+ gsMap/setup.py,sha256=lsIQCChHwR0ojWZs7xay8rukRaLlueuLkc83bp-B2ZE,103
15
+ gsMap/spatial_ldsc_multiple_sumstats.py,sha256=-mawOBjn8-Y5Irl8mv8ye83hfiEJ1mkLrRIQiI-XaMM,17973
16
+ gsMap/visualize.py,sha256=N55s-xmzSd_DtIesrGewfDeoytYUcMd2acDsjEpChCA,7242
17
+ gsMap/GNN/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ gsMap/GNN/adjacency_matrix.py,sha256=MfkhgpAHJcC-3l_iZDQQYD30w4bpe29-8s6kkGxiwQw,3231
19
+ gsMap/GNN/model.py,sha256=75In9sxBkaqqpCQSrQEUO-zsQQVQnkXVbKsAgyAZjiQ,2918
20
+ gsMap/GNN/train.py,sha256=4qipaxaz3rQOtlRpTYCfl1Oz4kz_A6vNB1aw8_gGK_k,3076
21
+ gsMap/templates/report_template.html,sha256=QODZEbVxpW1xsLz7lDrD_DyUfzYoi9E17o2tLJlf8OQ,8016
22
+ gsMap/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ gsMap/utils/generate_r2_matrix.py,sha256=0zyoJDWUVavlQtR6_XXb7Ah9UhPyT3n0t6XCqlI1HXQ,17354
24
+ gsMap/utils/jackknife.py,sha256=w_qMj9GlqViouHuOw1U80N6doWuCTXuPoAVU4P-5mm8,17673
25
+ gsMap/utils/manhattan_plot.py,sha256=N7jd0Cn-7JMsTBgv41k1w0174rqnPT-v7xLIV2cfY5U,25241
26
+ gsMap/utils/regression_read.py,sha256=rKA0nkUpTJf6WuGddhKrsBCExchDNEyojOWu_qddZNw,5474
27
+ gsmap-1.73.1.dist-info/entry_points.txt,sha256=s_P2Za22O077tc1FPLKMinbdRVXaN_HTcDBgWMYpqA4,41
28
+ gsmap-1.73.1.dist-info/licenses/LICENSE,sha256=fb5WP6qQytSKO5rM0ZSqQXg_92Fdt0aAeFNwSi3Lpmc,1069
29
+ gsmap-1.73.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
30
+ gsmap-1.73.1.dist-info/METADATA,sha256=34Y4_egICgzOwwCJ2L3u8j9OvKsUBPPlLJfi-t-gm98,8196
31
+ gsmap-1.73.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.10.1
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,6 +1,6 @@
1
- The MIT License (MIT)
1
+ MIT License
2
2
 
3
- Copyright (c) 2023 liyang
3
+ Copyright (c) 2025 JianYang-Lab
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,120 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: gsMap
3
- Version: 1.72.3
4
- Summary: Genetics-informed pathogenic spatial mapping
5
- Author-email: liyang <songliyang@westlake.edu.cn>, wenhao <chenwenhao@westlake.edu.cn>
6
- Requires-Python: >=3.8
7
- Description-Content-Type: text/markdown
8
- Classifier: Development Status :: 3 - Alpha
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3.8
12
- Classifier: Programming Language :: Python :: 3.9
13
- Classifier: Operating System :: POSIX :: Linux
14
- Requires-Dist: numpy < 2.0.0
15
- Requires-Dist: pandas
16
- Requires-Dist: scipy
17
- Requires-Dist: scikit-learn
18
- Requires-Dist: matplotlib
19
- Requires-Dist: seaborn
20
- Requires-Dist: tqdm
21
- Requires-Dist: pyyaml
22
- Requires-Dist: torch
23
- Requires-Dist: torch-geometric
24
- Requires-Dist: pyranges
25
- Requires-Dist: pyfiglet
26
- Requires-Dist: plotly
27
- Requires-Dist: kaleido
28
- Requires-Dist: jinja2
29
- Requires-Dist: scanpy >=1.8.0
30
- Requires-Dist: zarr
31
- Requires-Dist: bitarray >=2.9.2, <3.0.0
32
- Requires-Dist: pyarrow
33
- Requires-Dist: scikit-misc
34
- Requires-Dist: sphinx ; extra == "doc"
35
- Requires-Dist: sphinx-argparse ; extra == "doc"
36
- Requires-Dist: sphinx-autobuild ; extra == "doc"
37
- Requires-Dist: sphinx-autodoc-typehints ; extra == "doc"
38
- Requires-Dist: sphinx-basic-ng ; extra == "doc"
39
- Requires-Dist: sphinx-charts ; extra == "doc"
40
- Requires-Dist: sphinx-copybutton ; extra == "doc"
41
- Requires-Dist: sphinx_inline_tabs ; extra == "doc"
42
- Requires-Dist: sphinx-markdown-tables ; extra == "doc"
43
- Requires-Dist: sphinx-rtd-theme ; extra == "doc"
44
- Requires-Dist: sphinxcontrib-applehelp ; extra == "doc"
45
- Requires-Dist: sphinxcontrib-devhelp ; extra == "doc"
46
- Requires-Dist: sphinxcontrib-htmlhelp ; extra == "doc"
47
- Requires-Dist: sphinxcontrib-jquery ; extra == "doc"
48
- Requires-Dist: sphinxcontrib-jsmath ; extra == "doc"
49
- Requires-Dist: sphinxcontrib-qthelp ; extra == "doc"
50
- Requires-Dist: sphinxcontrib-serializinghtml ; extra == "doc"
51
- Requires-Dist: furo ; extra == "doc"
52
- Requires-Dist: myst-parser ; extra == "doc"
53
- Requires-Dist: nbsphinx ; extra == "doc"
54
- Project-URL: Documentation, https://yanglab.westlake.edu.cn/gsmap/document/software
55
- Project-URL: Home, https://github.com/LeonSong1995/gsMap
56
- Project-URL: Website, https://yanglab.westlake.edu.cn/gsmap/home
57
- Provides-Extra: doc
58
-
59
- [![GitHub Stars](https://img.shields.io/github/stars/JianYang-Lab/gsMap?logo=GitHub&color=yellow)](https://github.com/LeonSong1995/gsMap/stargazers)
60
- [![PyPI Version](https://img.shields.io/pypi/v/gsMap)](https://pypi.org/project/gsMap)
61
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
62
-
63
- # gsMap
64
-
65
- ## Introduction
66
-
67
- `gsMap` (genetically informed spatial mapping of cells for complex traits)
68
- integrates spatial transcriptomics (ST) data with genome-wide association study (GWAS)
69
- summary statistics to map cells to human complex traits, including diseases,
70
- in a spatially resolved manner.
71
-
72
- ## Key Features
73
-
74
- - **Spatially-aware High-Resolution Trait Mapping**
75
- - **Spatial Region Identification**
76
- - **Putative Causal Genes Identification**
77
-
78
- ![Model Architecture](schematic.png)
79
-
80
- ## Installation
81
-
82
- Install using pip:
83
-
84
- ```bash
85
- conda create -n gsMap python>=3.10
86
- conda activate gsMap
87
- pip install gsMap
88
- ```
89
-
90
- Install from source:
91
-
92
- ```bash
93
- git clone https://github.com/LeonSong1995/gsMap.git
94
- cd gsMap
95
- pip install -e .
96
- ```
97
-
98
- Verify the installation by running the following command:
99
-
100
- ```bash
101
- gsmap --help
102
- ```
103
-
104
- ## Usage
105
-
106
- Please check out the documentation and tutorials at [gsMap Documentation](https://yanglab.westlake.edu.cn/gsmap/document/software).
107
-
108
- ## Online Visualization
109
-
110
- To visualize the traits-cell association spatial maps,
111
- please refer to [gsMap Visualization](https://yanglab.westlake.edu.cn/gsmap/visualize).
112
-
113
- ## Citation
114
-
115
- Song, L., Chen, W., Hou, J., Guo, M. & Yang, J.
116
- [Spatially reso lved mapping of cells associated with human complex traits.](https://www.medrxiv.org/content/10.1101/2024.10.31.24316538v1)
117
- medRxiv, 2024.2010.2031.24316538 (2024) (Nature in press).
118
-
119
- Please cite the paper and give us a STAR if you find gsMap useful for your research.
120
-
@@ -1,31 +0,0 @@
1
- gsMap/__init__.py,sha256=KG_fjg3SKMr0pH9IBYN_dW9c_Rwhr3YDkWc_b5jnEzw,77
2
- gsMap/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
- gsMap/cauchy_combination_test.py,sha256=zT-XFCZJMOMu7sXYZ2n7DE1XKd4lYB-5q0ZSAcQlcfY,5075
4
- gsMap/config.py,sha256=kJa7uacKzLebCFPo0y1q8NjQXqla8V1nIE7MCXQu8XA,47020
5
- gsMap/create_slice_mean.py,sha256=X4GzvoFeRyAPmdifODT6NRNTk4nfC0KrYfOHeMjPBLk,5585
6
- gsMap/diagnosis.py,sha256=RcoIQoK2rtHpEqmSVwOG_amfKWuu1r5T8e2POPfIpOM,13362
7
- gsMap/find_latent_representation.py,sha256=wFY74YoZMSa7--2yrf4zYHYxqP0gtIrcNCKgcPojoPQ,4738
8
- gsMap/format_sumstats.py,sha256=8k-axws38NgRmJ69cnQtYZFdTsHdhBP0aBt4zHgU5vs,13610
9
- gsMap/generate_ldscore.py,sha256=tLU9u6yl37AXVrOxeCxKKWQtDy8YZf9BMRPEQzfLPrc,29113
10
- gsMap/latent_to_gene.py,sha256=1xdQJxkZ83PvinKXlcyllywxmfyCUt6y9xDksVNCBkc,11160
11
- gsMap/main.py,sha256=SzfAXhrlr4LXnSD4gkvAtUUPYXyra6a_MzVCxDBZjr0,1170
12
- gsMap/report.py,sha256=_1FYkzGhVGMnvHgEQ8z51iMrVEVlh48a31jLqbV2o9w,6953
13
- gsMap/run_all_mode.py,sha256=N_5J6Zbl2eJjVK0OXDzU8hZwxrakQS-3WeDIlKg0zWI,9289
14
- gsMap/setup.py,sha256=lsIQCChHwR0ojWZs7xay8rukRaLlueuLkc83bp-B2ZE,103
15
- gsMap/spatial_ldsc_multiple_sumstats.py,sha256=-mawOBjn8-Y5Irl8mv8ye83hfiEJ1mkLrRIQiI-XaMM,17973
16
- gsMap/visualize.py,sha256=N55s-xmzSd_DtIesrGewfDeoytYUcMd2acDsjEpChCA,7242
17
- gsMap/GNN/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- gsMap/GNN/adjacency_matrix.py,sha256=MfkhgpAHJcC-3l_iZDQQYD30w4bpe29-8s6kkGxiwQw,3231
19
- gsMap/GNN/model.py,sha256=75In9sxBkaqqpCQSrQEUO-zsQQVQnkXVbKsAgyAZjiQ,2918
20
- gsMap/GNN/train.py,sha256=S6s-AufN9GJNcgC5Mqe6MjcJAsaNnbDlHUoYHcvxFmA,3069
21
- gsMap/templates/report_template.html,sha256=QODZEbVxpW1xsLz7lDrD_DyUfzYoi9E17o2tLJlf8OQ,8016
22
- gsMap/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- gsMap/utils/generate_r2_matrix.py,sha256=uYy4sbYm5Uwn875hPG85y-3ZjBYmE_eGHpHcdFGKaag,28541
24
- gsMap/utils/jackknife.py,sha256=w_qMj9GlqViouHuOw1U80N6doWuCTXuPoAVU4P-5mm8,17673
25
- gsMap/utils/manhattan_plot.py,sha256=N7jd0Cn-7JMsTBgv41k1w0174rqnPT-v7xLIV2cfY5U,25241
26
- gsMap/utils/regression_read.py,sha256=YbRPktMf9-wM7QqUHYZw8Kcr3LKEGQSLsAT9AMhUe5w,7782
27
- gsmap-1.72.3.dist-info/entry_points.txt,sha256=s_P2Za22O077tc1FPLKMinbdRVXaN_HTcDBgWMYpqA4,41
28
- gsmap-1.72.3.dist-info/LICENSE,sha256=dCWx-ENipnYph2UTEA9wJaEZ_tkjNZ_tog6XRd3nd2k,1073
29
- gsmap-1.72.3.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
30
- gsmap-1.72.3.dist-info/METADATA,sha256=jCdwjCz28iEmPzJx7bRQ70cnASPFST2E05FZUfP_94I,4076
31
- gsmap-1.72.3.dist-info/RECORD,,