gsMap 1.71.1__tar.gz → 1.71.2__tar.gz
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-1.71.1 → gsmap-1.71.2}/.github/workflows/publish-to-pypi.yml +96 -96
- {gsmap-1.71.1 → gsmap-1.71.2}/.gitignore +257 -257
- {gsmap-1.71.1 → gsmap-1.71.2}/LICENSE +21 -21
- {gsmap-1.71.1 → gsmap-1.71.2}/PKG-INFO +3 -3
- {gsmap-1.71.1 → gsmap-1.71.2}/README.md +46 -46
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/Makefile +20 -20
- {gsmap-1.71.1/visualization_web_docs → gsmap-1.71.2/docs}/make.bat +35 -35
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/requirements.txt +2 -2
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/_static/schematic.svg +13633 -13633
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/cauchy_combination.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/find_latent_representations.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/format_sumstats.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/generate_ldscore.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/latent_to_gene.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/quick_mode.rst +7 -7
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/report.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api/spatial_ldsc.rst +8 -8
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/api.rst +81 -81
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/cortex/Cortex_151507_Height.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/cortex/Cortex_151507_IQ.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/cortex/Cortex_151507_MCHC.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/cortex/Cortex_151507_SCZ.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/mouse_embryo/E16.5_E1S1_Height.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/mouse_embryo/E16.5_E1S1_IQ.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/mouse_embryo/E16.5_E1S1_MCHC.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/mouse_embryo/E16.5_E1S1_SCZ.json +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/charts/test.json +16 -16
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/conf.py +55 -55
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/data.rst +63 -63
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/data_format.md +63 -63
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/index.rst +68 -68
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/install.rst +26 -26
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/mouse.rst +5 -5
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/mouse_example.md +264 -264
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/quick_mode.md +140 -140
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/release.rst +7 -7
- {gsmap-1.71.1 → gsmap-1.71.2}/docs/source/tutorials.rst +29 -29
- {gsmap-1.71.1 → gsmap-1.71.2}/pyproject.toml +83 -83
- {gsmap-1.71.1 → gsmap-1.71.2}/schematic.png +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/GNN/__init__.py +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/GNN/adjacency_matrix.py +75 -75
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/GNN/model.py +90 -90
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/GNN/train.py +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/__init__.py +5 -5
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/__main__.py +2 -2
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/cauchy_combination_test.py +141 -141
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/config.py +806 -805
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/diagnosis.py +274 -273
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/find_latent_representation.py +139 -133
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/format_sumstats.py +407 -407
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/generate_ldscore.py +618 -618
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/latent_to_gene.py +252 -234
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/main.py +31 -31
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/report.py +160 -160
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/run_all_mode.py +194 -194
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/setup.py +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/spatial_ldsc_multiple_sumstats.py +360 -380
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/templates/report_template.html +198 -198
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/utils/__init__.py +0 -0
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/utils/generate_r2_matrix.py +735 -735
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/utils/jackknife.py +514 -514
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/utils/make_annotations.py +518 -518
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/utils/manhattan_plot.py +639 -639
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/utils/regression_read.py +294 -294
- {gsmap-1.71.1 → gsmap-1.71.2}/src/gsMap/visualize.py +198 -198
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/Makefile +20 -20
- {gsmap-1.71.1/docs → gsmap-1.71.2/visualization_web_docs}/make.bat +35 -35
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/requirements.txt +2 -2
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/_static/raw1_add_txt.svg +37003 -37003
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/_static/raw2_add_txt.svg +29429 -29429
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/_static/raw3_add_txt.svg +36689 -36689
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/_static/raw4_add_txt.svg +17587 -17587
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/_static/raw5_add_txt.svg +20469 -20469
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/_static/schematic.svg +13633 -13633
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/conf.py +57 -57
- {gsmap-1.71.1 → gsmap-1.71.2}/visualization_web_docs/source/index.rst +44 -44
@@ -1,96 +1,96 @@
|
|
1
|
-
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
|
2
|
-
|
3
|
-
on: push
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
build:
|
7
|
-
name: Build distribution 📦
|
8
|
-
runs-on: ubuntu-latest
|
9
|
-
|
10
|
-
steps:
|
11
|
-
- uses: actions/checkout@v4
|
12
|
-
- name: Set up Python
|
13
|
-
uses: actions/setup-python@v4
|
14
|
-
with:
|
15
|
-
python-version: "3.x"
|
16
|
-
- name: Install pypa/build
|
17
|
-
run: >-
|
18
|
-
python3 -m
|
19
|
-
pip install
|
20
|
-
flit
|
21
|
-
--user
|
22
|
-
- name: Build a binary wheel and a source tarball
|
23
|
-
run: |
|
24
|
-
flit build
|
25
|
-
ls -lh dist
|
26
|
-
- name: Store the distribution packages
|
27
|
-
if: startsWith(github.ref, 'refs/tags/') # store only on tag pushes
|
28
|
-
uses: actions/upload-artifact@v3
|
29
|
-
with:
|
30
|
-
name: python-package-distributions
|
31
|
-
path: dist/
|
32
|
-
|
33
|
-
publish-to-pypi:
|
34
|
-
name: >-
|
35
|
-
Publish Python 🐍 distribution 📦 to PyPI
|
36
|
-
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
37
|
-
needs:
|
38
|
-
- build
|
39
|
-
runs-on: ubuntu-latest
|
40
|
-
environment:
|
41
|
-
name: pypi
|
42
|
-
url: https://pypi.org/p/gsMap
|
43
|
-
permissions:
|
44
|
-
id-token: write # IMPORTANT: mandatory for trusted publishing
|
45
|
-
|
46
|
-
steps:
|
47
|
-
- name: Download all the dists
|
48
|
-
uses: actions/download-artifact@v3
|
49
|
-
with:
|
50
|
-
name: python-package-distributions
|
51
|
-
path: dist/
|
52
|
-
- name: Publish distribution 📦 to PyPI
|
53
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
54
|
-
|
55
|
-
github-release:
|
56
|
-
name: >-
|
57
|
-
Sign the Python 🐍 distribution 📦 with Sigstore
|
58
|
-
and upload them to GitHub Release
|
59
|
-
needs:
|
60
|
-
- publish-to-pypi
|
61
|
-
runs-on: ubuntu-latest
|
62
|
-
|
63
|
-
permissions:
|
64
|
-
contents: write # IMPORTANT: mandatory for making GitHub Releases
|
65
|
-
id-token: write # IMPORTANT: mandatory for sigstore
|
66
|
-
|
67
|
-
steps:
|
68
|
-
- name: Download all the dists
|
69
|
-
uses: actions/download-artifact@v3
|
70
|
-
with:
|
71
|
-
name: python-package-distributions
|
72
|
-
path: dist/
|
73
|
-
- name: Sign the dists with Sigstore
|
74
|
-
uses: sigstore/gh-action-sigstore-python@v1.2.3
|
75
|
-
with:
|
76
|
-
inputs: >-
|
77
|
-
./dist/*.tar.gz
|
78
|
-
./dist/*.whl
|
79
|
-
- name: Create GitHub Release
|
80
|
-
env:
|
81
|
-
GITHUB_TOKEN: ${{ github.token }}
|
82
|
-
run: >-
|
83
|
-
gh release create
|
84
|
-
'${{ github.ref_name }}'
|
85
|
-
--repo '${{ github.repository }}'
|
86
|
-
--notes ""
|
87
|
-
- name: Upload artifact signatures to GitHub Release
|
88
|
-
env:
|
89
|
-
GITHUB_TOKEN: ${{ github.token }}
|
90
|
-
# Upload to GitHub Release using the `gh` CLI.
|
91
|
-
# `dist/` contains the built packages, and the
|
92
|
-
# sigstore-produced signatures and certificates.
|
93
|
-
run: >-
|
94
|
-
gh release upload
|
95
|
-
'${{ github.ref_name }}' dist/**
|
96
|
-
--repo '${{ github.repository }}'
|
1
|
+
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
|
2
|
+
|
3
|
+
on: push
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
name: Build distribution 📦
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
|
10
|
+
steps:
|
11
|
+
- uses: actions/checkout@v4
|
12
|
+
- name: Set up Python
|
13
|
+
uses: actions/setup-python@v4
|
14
|
+
with:
|
15
|
+
python-version: "3.x"
|
16
|
+
- name: Install pypa/build
|
17
|
+
run: >-
|
18
|
+
python3 -m
|
19
|
+
pip install
|
20
|
+
flit
|
21
|
+
--user
|
22
|
+
- name: Build a binary wheel and a source tarball
|
23
|
+
run: |
|
24
|
+
flit build
|
25
|
+
ls -lh dist
|
26
|
+
- name: Store the distribution packages
|
27
|
+
if: startsWith(github.ref, 'refs/tags/') # store only on tag pushes
|
28
|
+
uses: actions/upload-artifact@v3
|
29
|
+
with:
|
30
|
+
name: python-package-distributions
|
31
|
+
path: dist/
|
32
|
+
|
33
|
+
publish-to-pypi:
|
34
|
+
name: >-
|
35
|
+
Publish Python 🐍 distribution 📦 to PyPI
|
36
|
+
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
37
|
+
needs:
|
38
|
+
- build
|
39
|
+
runs-on: ubuntu-latest
|
40
|
+
environment:
|
41
|
+
name: pypi
|
42
|
+
url: https://pypi.org/p/gsMap
|
43
|
+
permissions:
|
44
|
+
id-token: write # IMPORTANT: mandatory for trusted publishing
|
45
|
+
|
46
|
+
steps:
|
47
|
+
- name: Download all the dists
|
48
|
+
uses: actions/download-artifact@v3
|
49
|
+
with:
|
50
|
+
name: python-package-distributions
|
51
|
+
path: dist/
|
52
|
+
- name: Publish distribution 📦 to PyPI
|
53
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
54
|
+
|
55
|
+
github-release:
|
56
|
+
name: >-
|
57
|
+
Sign the Python 🐍 distribution 📦 with Sigstore
|
58
|
+
and upload them to GitHub Release
|
59
|
+
needs:
|
60
|
+
- publish-to-pypi
|
61
|
+
runs-on: ubuntu-latest
|
62
|
+
|
63
|
+
permissions:
|
64
|
+
contents: write # IMPORTANT: mandatory for making GitHub Releases
|
65
|
+
id-token: write # IMPORTANT: mandatory for sigstore
|
66
|
+
|
67
|
+
steps:
|
68
|
+
- name: Download all the dists
|
69
|
+
uses: actions/download-artifact@v3
|
70
|
+
with:
|
71
|
+
name: python-package-distributions
|
72
|
+
path: dist/
|
73
|
+
- name: Sign the dists with Sigstore
|
74
|
+
uses: sigstore/gh-action-sigstore-python@v1.2.3
|
75
|
+
with:
|
76
|
+
inputs: >-
|
77
|
+
./dist/*.tar.gz
|
78
|
+
./dist/*.whl
|
79
|
+
- name: Create GitHub Release
|
80
|
+
env:
|
81
|
+
GITHUB_TOKEN: ${{ github.token }}
|
82
|
+
run: >-
|
83
|
+
gh release create
|
84
|
+
'${{ github.ref_name }}'
|
85
|
+
--repo '${{ github.repository }}'
|
86
|
+
--notes ""
|
87
|
+
- name: Upload artifact signatures to GitHub Release
|
88
|
+
env:
|
89
|
+
GITHUB_TOKEN: ${{ github.token }}
|
90
|
+
# Upload to GitHub Release using the `gh` CLI.
|
91
|
+
# `dist/` contains the built packages, and the
|
92
|
+
# sigstore-produced signatures and certificates.
|
93
|
+
run: >-
|
94
|
+
gh release upload
|
95
|
+
'${{ github.ref_name }}' dist/**
|
96
|
+
--repo '${{ github.repository }}'
|