diff options
author | Efraim Flashner | 2020-05-31 12:51:45 -0500 |
---|---|---|
committer | Efraim Flashner | 2020-05-31 12:51:45 -0500 |
commit | c43d167ecdfe83de6c81f5718ccf21380f40c3b7 (patch) | |
tree | 7108819b8d0ee140a6074a2de37a488e7667a2f4 /gn/packages/ratspub.scm | |
parent | c2cbcf1d42e547fa90b4ca3555a696b73d99ef9d (diff) | |
download | guix-bioinformatics-c43d167ecdfe83de6c81f5718ccf21380f40c3b7.tar.gz |
gn: ratspub: Use optimized tensorflow library
Diffstat (limited to 'gn/packages/ratspub.scm')
-rw-r--r-- | gn/packages/ratspub.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gn/packages/ratspub.scm b/gn/packages/ratspub.scm index bd82efc..6cf4802 100644 --- a/gn/packages/ratspub.scm +++ b/gn/packages/ratspub.scm @@ -8,6 +8,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages bioinformatics) #:use-module (gn packages javascript) + #:use-module (gn packages machine-learning) #:use-module (gnu packages machine-learning) #:use-module (gnu packages python) #:use-module (gnu packages python-crypto) @@ -138,6 +139,12 @@ Studies} catalog are also included in the search to better answer this question.") (license license:expat))) +(define-public ratspub-with-tensorflow-native + (package + (inherit + (tensowflow-native-instead-of-tensorflow ratspub)) + (name "ratspub-with-tensorflow-native"))) + ;; We want a copy of python-keras with the AUC optimizer backported. ;; We skip the tests because we "test in production". ;; That's a lie. The test suite just takes a long time to run. |