webgestaltpy 0.2.0__tar.gz → 0.3.0__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.

Potentially problematic release.


This version of webgestaltpy might be problematic. Click here for more details.

Files changed (34) hide show
  1. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/.github/workflows/CI.yml +1 -1
  2. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/.github/workflows/doc.yaml +4 -2
  3. WebGestaltPy-0.3.0/.pre-commit-config.yaml +15 -0
  4. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/Cargo.lock +44 -17
  5. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/Cargo.toml +2 -2
  6. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/PKG-INFO +2 -2
  7. WebGestaltPy-0.3.0/_typos.toml +2 -0
  8. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/build_docs.py +1 -1
  9. WebGestaltPy-0.3.0/data/hsapiens_network_CPTAC_Proteomics_OV_entrezgene.net +6091 -0
  10. WebGestaltPy-0.3.0/data/net_genes.txt +50 -0
  11. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/docs/Usage/index.md +12 -4
  12. WebGestaltPy-0.3.0/docs/data.tar.gz +0 -0
  13. WebGestaltPy-0.3.0/docs/index.md +15 -0
  14. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/pyproject.toml +1 -0
  15. WebGestaltPy-0.3.0/requirements-dev.lock +114 -0
  16. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/requirements.lock +2 -0
  17. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/src/lib.rs +118 -9
  18. WebGestaltPy-0.3.0/test.py +29 -0
  19. WebGestaltPy-0.2.0/docs/data.tar.gz +0 -0
  20. WebGestaltPy-0.2.0/docs/index.md +0 -15
  21. WebGestaltPy-0.2.0/requirements-dev.lock +0 -48
  22. WebGestaltPy-0.2.0/test.py +0 -24
  23. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/.gitignore +0 -0
  24. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/README.md +0 -0
  25. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/data/genelist.txt +0 -0
  26. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/data/kegg.gmt +0 -0
  27. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/data/reference.txt +0 -0
  28. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/data/second_genelist.txt +0 -0
  29. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/data/second_test.rnk +0 -0
  30. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/data/test.rnk +0 -0
  31. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/docs/assets/favicon-32x32.png +0 -0
  32. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/docs/assets/logo.svg +0 -0
  33. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/docs/overrides/main.html +0 -0
  34. {WebGestaltPy-0.2.0 → WebGestaltPy-0.3.0}/mkdocs.yml +0 -0
@@ -154,5 +154,5 @@ jobs:
154
154
  id: extract_branch
155
155
  - name: Deploy with mike 🚀
156
156
  run: |
157
- git fetch origin gh-pagess
157
+ git fetch origin gh-pages
158
158
  mike deploy --update-aliases --push ${{ steps.extract_branch.outputs.branch }} latest
@@ -31,8 +31,10 @@ jobs:
31
31
  - uses: PyO3/maturin-action@v1
32
32
  with:
33
33
  command: build
34
- - run: pip install .
35
- - run: python build_docs.py
34
+ - name: Install package
35
+ run: pip install .
36
+ - name: Build documentation
37
+ run: python build_docs.py
36
38
  - name: Deploy with mike 🚀
37
39
  run: |
38
40
  git fetch origin gh-pages
@@ -0,0 +1,15 @@
1
+ # See https://pre-commit.com for more information
2
+ # See https://pre-commit.com/hooks.html for more hooks
3
+ repos:
4
+ - repo: https://github.com/crate-ci/typos
5
+ rev: v1.22.7
6
+ hooks:
7
+ - id: typos
8
+ - repo: local
9
+ hooks:
10
+ - id: rustfmt
11
+ name: rustfmt
12
+ description: Check if all files follow the rustfmt style
13
+ entry: cargo fmt --all -- --check --color always
14
+ language: system
15
+ pass_filenames: false
@@ -219,6 +219,20 @@ dependencies = [
219
219
  "syn 1.0.109",
220
220
  ]
221
221
 
222
+ [[package]]
223
+ name = "ndarray"
224
+ version = "0.15.6"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
227
+ dependencies = [
228
+ "matrixmultiply",
229
+ "num-complex",
230
+ "num-integer",
231
+ "num-traits",
232
+ "rawpointer",
233
+ "rayon",
234
+ ]
235
+
222
236
  [[package]]
223
237
  name = "num-complex"
224
238
  version = "0.4.4"
@@ -302,9 +316,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
302
316
 
303
317
  [[package]]
304
318
  name = "proc-macro2"
305
- version = "1.0.69"
319
+ version = "1.0.85"
306
320
  source = "registry+https://github.com/rust-lang/crates.io-index"
307
- checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
321
+ checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23"
308
322
  dependencies = [
309
323
  "unicode-ident",
310
324
  ]
@@ -355,7 +369,7 @@ dependencies = [
355
369
  "proc-macro2",
356
370
  "pyo3-macros-backend",
357
371
  "quote",
358
- "syn 2.0.39",
372
+ "syn 2.0.66",
359
373
  ]
360
374
 
361
375
  [[package]]
@@ -367,14 +381,14 @@ dependencies = [
367
381
  "heck",
368
382
  "proc-macro2",
369
383
  "quote",
370
- "syn 2.0.39",
384
+ "syn 2.0.66",
371
385
  ]
372
386
 
373
387
  [[package]]
374
388
  name = "quote"
375
- version = "1.0.33"
389
+ version = "1.0.36"
376
390
  source = "registry+https://github.com/rust-lang/crates.io-index"
377
- checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
391
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
378
392
  dependencies = [
379
393
  "proc-macro2",
380
394
  ]
@@ -483,22 +497,33 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
483
497
 
484
498
  [[package]]
485
499
  name = "serde"
486
- version = "1.0.192"
500
+ version = "1.0.203"
487
501
  source = "registry+https://github.com/rust-lang/crates.io-index"
488
- checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
502
+ checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
489
503
  dependencies = [
490
504
  "serde_derive",
491
505
  ]
492
506
 
493
507
  [[package]]
494
508
  name = "serde_derive"
495
- version = "1.0.192"
509
+ version = "1.0.203"
496
510
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
- checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
511
+ checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
498
512
  dependencies = [
499
513
  "proc-macro2",
500
514
  "quote",
501
- "syn 2.0.39",
515
+ "syn 2.0.66",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "serde_json"
520
+ version = "1.0.117"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
523
+ dependencies = [
524
+ "itoa",
525
+ "ryu",
526
+ "serde",
502
527
  ]
503
528
 
504
529
  [[package]]
@@ -546,9 +571,9 @@ dependencies = [
546
571
 
547
572
  [[package]]
548
573
  name = "syn"
549
- version = "2.0.39"
574
+ version = "2.0.66"
550
575
  source = "registry+https://github.com/rust-lang/crates.io-index"
551
- checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
576
+ checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
552
577
  dependencies = [
553
578
  "proc-macro2",
554
579
  "quote",
@@ -593,21 +618,23 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
593
618
 
594
619
  [[package]]
595
620
  name = "webgestalt_lib"
596
- version = "0.2.0"
621
+ version = "0.3.1"
597
622
  source = "registry+https://github.com/rust-lang/crates.io-index"
598
- checksum = "c25835d6a6fa0cdbf6164306c0aafa046f6af630dfbfd9ee0c1d2307e36cfb44"
623
+ checksum = "0af63e3cbb1532cdfa4002ca11c961840c6dbeee6120911d55dcc165df0b3dbe"
599
624
  dependencies = [
600
625
  "ahash",
601
626
  "csv",
627
+ "ndarray",
602
628
  "rand",
603
629
  "rayon",
604
630
  "serde",
631
+ "serde_json",
605
632
  "statrs",
606
633
  ]
607
634
 
608
635
  [[package]]
609
636
  name = "webgestaltpy"
610
- version = "0.2.0"
637
+ version = "0.3.0"
611
638
  dependencies = [
612
639
  "pyo3",
613
640
  "rustc-hash",
@@ -698,5 +725,5 @@ checksum = "c2f140bda219a26ccc0cdb03dba58af72590c53b22642577d88a927bc5c87d6b"
698
725
  dependencies = [
699
726
  "proc-macro2",
700
727
  "quote",
701
- "syn 2.0.39",
728
+ "syn 2.0.66",
702
729
  ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "webgestaltpy"
3
- version = "0.2.0"
3
+ version = "0.3.0"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -11,4 +11,4 @@ crate-type = ["cdylib"]
11
11
  [dependencies]
12
12
  pyo3 = "0.20.2"
13
13
  rustc-hash = "1.1.0"
14
- webgestalt_lib = "0.2.0"
14
+ webgestalt_lib = "0.3.1"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: WebGestaltPy
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -0,0 +1,2 @@
1
+ [files]
2
+ extend-exclude = ["data/*"]
@@ -19,7 +19,7 @@ ADJUSTED_HEADERS = ["#" * i for i in range(1, 7)]
19
19
  ######################
20
20
 
21
21
  OUTPUT_DIR = "docs/reference"
22
- PRIORITY = ["ora", "meta_ora", "gsea", "meta_gsea"]
22
+ PRIORITY = ["ora", "meta_ora", "gsea", "meta_gsea", "nta", "NTAMethod"]
23
23
  SKIP = ["webgestaltpy"]
24
24
 
25
25