summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--issues/implement-parallel-correlation-with-rust.gmi27
1 files changed, 22 insertions, 5 deletions
diff --git a/issues/implement-parallel-correlation-with-rust.gmi b/issues/implement-parallel-correlation-with-rust.gmi
index 65f1a90..b572b8f 100644
--- a/issues/implement-parallel-correlation-with-rust.gmi
+++ b/issues/implement-parallel-correlation-with-rust.gmi
@@ -20,19 +20,20 @@ parralel computation
* [X] implementation of basic pearson and spearman correlation in rust
-* [X] add unittests
+* [X] add unittests and benchmarks
* [X] loading datasets;format
-* [ ] add parralel computation
+* [X] package the library as a guix package
+
+* [ ] add parralel computation
-* [ ] code optimization: modularization,lazy_loading,iterator,
+* [ ] code optimization and minor fixes
-* [ ] python support:importing rust code from python as a lib
-* [ ] gn2 integration
+* [ ] gn2 integration(WIP)
@@ -40,7 +41,23 @@ parralel computation
## Notes
+You can call the lib as an external process from any language or directly call
+it in a rust cargo
+
+
+
code can be found here:
=> https://github.com/Alexanderlacuna/correlation_rust.git
+
+added a documentation for correlation rust
+
+=> https://github.com/Alexanderlacuna/correlation_rust/blob/main/README.md
+
+
+PR for integrating to genenetwork:
+
+=> https://github.com/genenetwork/genenetwork3/pull/93
+
+