webgestaltpy 0.1.1__pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.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 webgestaltpy might be problematic. Click here for more details.

@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.1
2
+ Name: WebGestaltPy
3
+ Version: 0.1.1
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
7
+ Requires-Python: >=3.7
8
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
9
+
10
+ # WebGestaltPy
11
+
12
+ A python package containing bindings to the underlying Rust library [webgestalt_rust](https://www.github.com/bzhanglab/webgestalt_rust).
13
+
14
+ ## Features
15
+
16
+ - Compute GSEA and ORA
17
+ - Run a meta-analysis combining multiple lists
18
+ - Combine multiple lists into a single analysis type
19
+
20
+ The output of the python package is the values. This does not generate any HTML reports. For reports, please use the [R package](https://github.com/bzhanglab/webgestaltr).
21
+
22
+ ## Installation
23
+
24
+ ```
25
+ pip install webgestaltpy
26
+ ```
27
+
28
+ ## Development
29
+
30
+ WebGestaltPy uses [maturin](https://www.maturin.rs) and [rye](https://rye-up.com) to build the full project. To build WebGestaltPy, run the following commands
31
+
32
+ ```bash
33
+ rye sync # download correct python version and install dependencies
34
+ rye tools install maturin
35
+ rye run python -m ensurepip --default-pip # makes sure maturin can run correctly
36
+ rye shell # initialize shell so the python command executes the local version
37
+ maturin develop # -r # add -r to build the full release version of the rust library.
38
+ python test.py # run the test script
39
+ ```
40
+
@@ -0,0 +1,5 @@
1
+ WebGestaltPy-0.1.1.dist-info/METADATA,sha256=Yk-a7vp71iM4m2aLGSpHSYI8Qfw8BNg62l9UfCa5Oqk,1409
2
+ WebGestaltPy-0.1.1.dist-info/WHEEL,sha256=XDqm-7UiZQVPaQEgPOtRDsL3IOHZkrzac9pV1KfsASk,130
3
+ webgestaltpy/__init__.py,sha256=PaTxMdW2SyWnB3IZ94Cgb1EGw7KaMwAQOUnvVvh6HIE,131
4
+ webgestaltpy/webgestaltpy.pypy39-pp73-x86-linux-gnu.so,sha256=30ZoyPaL4-WgGVyFOKs4VmWOKRxPP-MygSM4C60q-s4,4718988
5
+ WebGestaltPy-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.4.0)
3
+ Root-Is-Purelib: false
4
+ Tag: pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686
@@ -0,0 +1,5 @@
1
+ from .webgestaltpy import *
2
+
3
+ __doc__ = webgestaltpy.__doc__
4
+ if hasattr(webgestaltpy, "__all__"):
5
+ __all__ = webgestaltpy.__all__