@sjcrh/proteinpaint-rust 2.27.0 → 2.29.6
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.
- package/Cargo.toml +7 -2
- package/package.json +2 -2
- package/src/DEanalysis.rs +1010 -0
- package/src/stats_functions.rs +275 -0
- package/src/wilcoxon.rs +2 -272
package/Cargo.toml
CHANGED
|
@@ -25,8 +25,8 @@ json = "^0.12.4"
|
|
|
25
25
|
serde = {version = "^1.0.147", features = ["derive"]}
|
|
26
26
|
serde_json="^1.0.88"
|
|
27
27
|
num = "^0.4.1"
|
|
28
|
-
|
|
29
|
-
#
|
|
28
|
+
csv = "^1.2.2"
|
|
29
|
+
#r_mathlib="^0.2.0" # Uncomment this line to activate DE expression app for high sample sizes
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
[profile.release]
|
|
@@ -66,3 +66,8 @@ path="src/cluster.rs"
|
|
|
66
66
|
#[[bin]]
|
|
67
67
|
#name="wilcoxon"
|
|
68
68
|
#path="src/wilcoxon.rs"
|
|
69
|
+
|
|
70
|
+
# Uncomment the lines below to use DE app for higher sample sizes
|
|
71
|
+
#[[bin]]
|
|
72
|
+
#name="DEanalysis"
|
|
73
|
+
#path="src/DEanalysis.rs"
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.
|
|
2
|
+
"version": "2.29.6",
|
|
3
3
|
"name": "@sjcrh/proteinpaint-rust",
|
|
4
4
|
"description": "Rust-based utilities for proteinpaint",
|
|
5
5
|
"main": "index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "cargo build --release",
|
|
11
11
|
"build": "cargo build --release",
|
|
12
|
-
"postinstall": "if [ ! -d ./test ]; then cargo build --release; fi",
|
|
12
|
+
"postinstall": "if [ ! -d ./test ] & [ ! -d ./target/release ]; then cargo build --release; fi",
|
|
13
13
|
"test": "tape **/test/*.spec.js",
|
|
14
14
|
"test:unit": "tape **/test/*.unit.spec.js",
|
|
15
15
|
"test:integration": "echo 'TODO: rust integration tests'"
|