about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2025-09-03 14:26:45 +0100
committerArun Isaac2025-09-03 14:26:45 +0100
commit56ee579b464326af3ac91ef6a652719871c3511e (patch)
tree1ad915f58f676c2c59326bbb3f921890e63ba4bb
parent8d88b001abb931c52a702cc7795a78b7b4ae2b17 (diff)
downloadguix-bioinformatics-56ee579b464326af3ac91ef6a652719871c3511e.tar.gz
gn: Add julia-jwas.
* gn/packages/julia.scm (julia-jwas): New variable.
-rw-r--r--gn/packages/julia.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gn/packages/julia.scm b/gn/packages/julia.scm
index 92f4237..0557dfc 100644
--- a/gn/packages/julia.scm
+++ b/gn/packages/julia.scm
@@ -2804,3 +2804,30 @@ that still support Julia versions older than 1.6.")
     (description "@code{julia-progressmeter} provides a progress meter
 for long-running computations.")
     (license license:expat)))
+
+(define-public julia-jwas
+  (package
+    (name "julia-jwas")
+    (version "1.2.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/reworkhow/JWAS.jl")
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0mbs8h98bb503x0k3xf4n11h8lwnnyz9y757b8dgx888jf1firv1"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     (list julia-csv
+           julia-dataframes
+           julia-distributions
+           julia-forwarddiff
+           julia-progressmeter))
+    (home-page "https://github.com/reworkhow/JWAS.jl")
+    (synopsis "Julia whole-genome analysis library")
+    (description "@code{julia-jwas} is an open-source software tool
+ written in Julia for Bayesian multiple regression methods applied to
+genomic prediction and genome-wide association studies.")
+    (license license:gpl2)))