aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpjotrp2016-02-13 13:42:35 +0100
committerpjotrp2016-02-13 13:42:35 +0100
commitec66c7f1853e4a84c7aa336700294626abb58268 (patch)
tree84b48cf07ce3378930f54cdba863e18ae1ce3d88
parentdf5f7651f94891effdcef4ec67af5a04c888713e (diff)
downloadguix-bioinformatics-ec66c7f1853e4a84c7aa336700294626abb58268.tar.gz
Started on python2-htmlgen
-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")