[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add lofreq.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add lofreq. |
Date: |
Wed, 28 Apr 2021 11:42:16 -0400 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 01e33a0 gnu: Add lofreq.
01e33a0 is described below
commit 01e33a031e493477d930b9383d397fea012a3b1a
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Apr 28 17:41:08 2021 +0200
gnu: Add lofreq.
* gnu/packages/bioinformatics.scm (lofreq): New variable.
---
gnu/packages/bioinformatics.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 92c0692..9b819d1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -15247,6 +15247,40 @@ database. That database maps k-mers to the lowest
common ancestor (LCA) of all
genomes known to contain a given k-mer.")
(license license:expat)))
+(define-public lofreq
+ (package
+ (name "lofreq")
+ (version "2.1.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/CSB5/lofreq")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0qssrn3mgjak7df6iqc1rljqd3g3a5syvg0lsv4vds43s3fq23bl"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:test-target "bug-tests"
+ #:tests? #false)) ; test data are not included
+ (inputs
+ `(("htslib" ,htslib)
+ ("python" ,python-wrapper)
+ ("zlib" ,zlib)))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("which" ,which)))
+ (home-page "https://csb5.github.io/lofreq/")
+ (synopsis "Sensitive variant calling from sequencing data ")
+ (description "LoFreq is a fast and sensitive variant-caller for inferring
+SNVs and indels from next-generation sequencing data. It makes full use of
+base-call qualities and other sources of errors inherent in
+sequencing (e.g. mapping or base/indel alignment uncertainty), which are
+usually ignored by other methods or only used for filtering.")
+ (license license:expat)))
+
(define-public python-pyliftover
(package
(name "python-pyliftover")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add lofreq.,
guix-commits <=