webgestaltpy 0.3.0__cp38-cp38-manylinux_2_17_i686.manylinux2014_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,42 @@
1
+ Metadata-Version: 2.3
2
+ Name: WebGestaltPy
3
+ Version: 0.3.0
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
+ git clone https://github.com/bzhanglab/webgestaltpy.git
34
+ cd webgestaltpy
35
+ rye sync # download correct python version and install dependencies
36
+ rye tools install maturin
37
+ rye run python -m ensurepip --default-pip # makes sure maturin can run correctly
38
+ rye shell # initialize shell so the python command executes the local version
39
+ maturin develop # add -r to build and install the full release version of the rust library.
40
+ python test.py # run the test script
41
+ ```
42
+
@@ -0,0 +1,5 @@
1
+ WebGestaltPy-0.3.0.dist-info/METADATA,sha256=Vtfw9rfLPgVRWtJ2QaEu8mg6vuFWmV2d_-5bFeC_tBg,1488
2
+ WebGestaltPy-0.3.0.dist-info/WHEEL,sha256=FKrbGeYcm8tpDlbhD85y6W-QTWL3VY3fjdWjdt1u4B4,123
3
+ webgestaltpy/__init__.py,sha256=PaTxMdW2SyWnB3IZ94Cgb1EGw7KaMwAQOUnvVvh6HIE,131
4
+ webgestaltpy/webgestaltpy.cpython-38-i386-linux-gnu.so,sha256=EtoguJlOPwETMt3VZwjOIV8a89koPxJQQSYJuHdw5YQ,1350452
5
+ WebGestaltPy-0.3.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.6.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp38-cp38-manylinux_2_17_i686.manylinux2014_i686
@@ -0,0 +1,5 @@
1
+ from .webgestaltpy import *
2
+
3
+ __doc__ = webgestaltpy.__doc__
4
+ if hasattr(webgestaltpy, "__all__"):
5
+ __all__ = webgestaltpy.__all__