gsMap 1.72.3__py3-none-any.whl → 1.73.0__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.
- gsMap/__init__.py +1 -1
- gsMap/cauchy_combination_test.py +5 -5
- gsMap/config.py +141 -21
- gsMap/create_slice_mean.py +32 -18
- gsMap/find_latent_representation.py +1 -1
- gsMap/format_sumstats.py +6 -0
- gsMap/generate_ldscore.py +8 -40
- gsMap/latent_to_gene.py +42 -14
- gsMap/run_all_mode.py +1 -0
- gsMap/utils/generate_r2_matrix.py +13 -292
- gsMap/utils/regression_read.py +0 -76
- gsmap-1.73.0.dist-info/METADATA +169 -0
- gsmap-1.73.0.dist-info/RECORD +31 -0
- {gsmap-1.72.3.dist-info → gsmap-1.73.0.dist-info}/WHEEL +1 -1
- {gsmap-1.72.3.dist-info → gsmap-1.73.0.dist-info/licenses}/LICENSE +6 -6
- gsmap-1.72.3.dist-info/METADATA +0 -120
- gsmap-1.72.3.dist-info/RECORD +0 -31
- {gsmap-1.72.3.dist-info → gsmap-1.73.0.dist-info}/entry_points.txt +0 -0
gsmap-1.72.3.dist-info/METADATA
DELETED
@@ -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
|
-
[](https://github.com/LeonSong1995/gsMap/stargazers)
|
60
|
-
[](https://pypi.org/project/gsMap)
|
61
|
-
[](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
|
-

|
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
|
-
|
gsmap-1.72.3.dist-info/RECORD
DELETED
@@ -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,,
|
File without changes
|