about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/bioinformatics.scm2
-rw-r--r--gn/packages/python.scm21
2 files changed, 23 insertions, 0 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm
index c796708..69a98c6 100644
--- a/gn/packages/bioinformatics.scm
+++ b/gn/packages/bioinformatics.scm
@@ -233,6 +233,7 @@ confidence region for the location of a putative QTL.")
               ("mysql" ,mysql)
               ("nginx" ,nginx)
               ("python2-flask" ,python2-flask)
+              ("python2-htmlgen" ,python2-htmlgen)
               ("python2-jinja2" ,python2-jinja2)
               ("python2-sqlalchemy" ,python2-sqlalchemy)
               ("python2-setuptools" ,python2-setuptools)
@@ -249,6 +250,7 @@ confidence region for the location of a putative QTL.")
               ("python-xlsxwriter" ,python-xlsxwriter)
               ;; python-yolk is not needed
               ("plink" ,plink) 
+              ("qtlreaper" ,qtlreaper) 
               ("r-qtl" ,r-qtl)
               ))
     (build-system python-build-system)
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 41d6ee1..c8a4a46 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -273,6 +273,27 @@ powerful language for representing information.")
 (define-public python2-mysqlclient
   (package-with-python2 python-mysqlclient))
 
+(define-public python2-htmlgen
+(package
+  (name "python2-htmlgen")
+  (version "2.2.2")
+  (source (origin
+           (method url-fetch)
+           (uri (string-append
+                 "http://ftp.nl.debian.org/debian/pool/main/h/htmlgen/htmlgen_"
+version ".orig.tar.gz"))
+           (sha256
+            (base32
+             "186kb434q6z84g31ysvzi4kcfcvl3pmm57k4jlng4ccgls94x6wb"))
+            (patches (list (search-patch "htmlgen_2.2.2-12.3.patch")
+            ))))
+  (build-system python-build-system)
+  (home-page
+    "https://packages.debian.org/unstable/python/python-htmlgen")
+  (synopsis "Python2 HTMLgen (somewhat defunkt project)")
+  (description #f)
+  (license #f)))
+
 (define-public python2-numarray
   (package
     (name "python2-numarray")