@sjcrh/proteinpaint-rust 2.129.6-2b2fdc7ee.0 → 2.130.0
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/README.md +8 -3
- package/package.json +1 -1
- package/src/gdcGRIN2.rs +482 -136
- package/src/test_cerno.rs +102 -21185
- package/src/wilcoxon.rs +5 -16
package/README.md
CHANGED
|
@@ -36,13 +36,18 @@ const out = await run_rust('indel', input_data)
|
|
|
36
36
|
|
|
37
37
|
## Test
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
For running the tests written in nodejs, from the `proteinpaint` directory run,
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
|
|
43
|
-
npx tsc
|
|
42
|
+
npm run test:unit --workspace="rust"
|
|
44
43
|
```
|
|
45
44
|
|
|
45
|
+
For running the tests written in native rust, from the `proteinpaint/rust` directory run.
|
|
46
|
+
```bash
|
|
47
|
+
cargo test
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
|
|
46
51
|
## Build
|
|
47
52
|
|
|
48
53
|
```bash
|
package/package.json
CHANGED