summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Syme <rob.syme@gmail.com>2016-03-11 11:47:24 +0800
committerLeo Famulari <leo@famulari.name>2016-03-16 04:49:27 -0400
commit6a35566df7e2f9876242d10a14074ae662a0037f (patch)
treebde622dc0605065d18dc66bb488716e9d68fef9c
parent8e14e059c40c22b946e7beef64dc9e4d3b3d5e35 (diff)
gnu: Add codingquarry.
* gnu/packages/bioinformatics.scm (codingquarry): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r--gnu/packages/bioinformatics.scm40
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4dd2ee6f92c..190a058cc65 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -958,6 +958,46 @@ also includes an interface for tabix.")
958 "CLIPper is a tool to define peaks in CLIP-seq datasets.") 958 "CLIPper is a tool to define peaks in CLIP-seq datasets.")
959 (license license:gpl2))) 959 (license license:gpl2)))
960 960
961(define-public codingquarry
962 (package
963 (name "codingquarry")
964 (version "2.0")
965 (source (origin
966 (method url-fetch)
967 (uri (string-append
968 "mirror://sourceforge/codingquarry/CodingQuarry_v"
969 version ".tar.gz"))
970 (sha256
971 (base32
972 "0115hkjflsnfzn36xppwf9h9avfxlavr43djqmshkkzbgjzsz60i"))))
973 (build-system gnu-build-system)
974 (arguments
975 '(#:tests? #f ; no "check" target
976 #:phases
977 (modify-phases %standard-phases
978 (delete 'configure)
979 (replace 'install
980 (lambda* (#:key outputs #:allow-other-keys)
981 (let* ((out (assoc-ref outputs "out"))
982 (bin (string-append out "/bin"))
983 (doc (string-append out "/share/doc/codingquarry")))
984 (install-file "INSTRUCTIONS.pdf" doc)
985 (copy-recursively "QuarryFiles"
986 (string-append out "/QuarryFiles"))
987 (install-file "CodingQuarry" bin)
988 (install-file "CufflinksGTF_to_CodingQuarryGFF3.py" bin)))))))
989 (inputs `(("openmpi" ,openmpi)))
990 (native-search-paths
991 (list (search-path-specification
992 (variable "QUARRY_PATH")
993 (files '("QuarryFiles")))))
994 (native-inputs `(("python" ,python-2))) ; Only Python 2 is supported
995 (synopsis "Fungal gene predictor")
996 (description "CodingQuarry is a highly accurate, self-training GHMM fungal
997gene predictor designed to work with assembled, aligned RNA-seq transcripts.")
998 (home-page "https://sourceforge.net/projects/codingquarry/")
999 (license license:gpl3+)))
1000
961(define-public couger 1001(define-public couger
962 (package 1002 (package
963 (name "couger") 1003 (name "couger")