about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPjotr Prins2016-01-19 11:20:41 +0300
committerPjotr Prins2016-01-19 11:20:41 +0300
commit51bfac8ff651f778df6e5320141898fcbaa724e2 (patch)
treee05cc32e1dcbc0d576226ce3f30f0a80cf3327ae
parent85eaaaf6935a33022626a45edfd9582c26f11b17 (diff)
downloadguix-bioinformatics-51bfac8ff651f778df6e5320141898fcbaa724e2.tar.gz
Started packaging GN
-rw-r--r--gn/packages/bioinformatics.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm
index 27d9fb7..8fe8708 100644
--- a/gn/packages/bioinformatics.scm
+++ b/gn/packages/bioinformatics.scm
@@ -118,3 +118,25 @@
     "Functions necessary to perform Weighted Correlation Network Analysis on high-dimensional data.  Includes functions for rudimentary data cleaning, construction of correlation networks, module identification, summarization, and relating of variables and modules to sample traits.  Also includes a number of utility functions for data manipulation and visualization.")
   (license license:gpl2+)))
 
+
+(define-public genenetwork
+  (let ((commit "90417f439"))
+  (package
+    (name "genenetwork")
+    (version (string-append "2.0." commit))
+    (source (origin
+             (method git-fetch)
+             (uri (git-reference
+                   (url "https://github.com/genenetwork/genenetwork2.git")
+                   (commit commit)))
+             (sha256
+              (base32
+               "0njplyalwwqh7xr7xc7klc6x06mq0ak8w2pxh85w8n4hxkmqqnf5"))))
+    (inputs `(("nginx" ,nginx)
+              ("python" ,python-2
+             )))
+    (build-system trivial-build-system)
+    (home-page "http://genenetwork.org/")
+    (synopsis "Full genenetwork services")
+    (description "Genenetwork installation sumo.")
+    (license license:agpl3+))))