guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add indelfixer.


From: guix-commits
Subject: 02/02: gnu: Add indelfixer.
Date: Mon, 15 Feb 2021 07:59:47 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 9904a15a4c838362673c1affdbaf1e83d92fe8ff
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Feb 15 13:51:25 2021 +0100

    gnu: Add indelfixer.
    
    * gnu/packages/bioinformatics.scm (indelfixer): New variable.
---
 gnu/packages/bioinformatics.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 6f835b3..f3e0e41 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -15570,6 +15570,41 @@ manipulation of hierarchical features (e.g., genes, 
transcripts, and exons)
 than is possible with plain-text methods alone.")
       (license license:expat))))
 
+(define-public indelfixer
+  (package
+    (name "indelfixer")
+    (version "1.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/cbg-ethz/InDelFixer/";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "10ak05x8i1bx2p7rriv2rglqg1wr7c8wrhjrqlq1wm7ka99w8i79"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "InDelFixer.jar"
+       #:source-dir "src/main/java"
+       #:test-dir "src/test"))
+    (inputs
+     `(("java-commons-lang2" ,java-commons-lang)
+       ("java-args4j" ,java-args4j)))
+    (native-inputs
+     `(("java-junit" ,java-junit)))
+    (home-page "https://github.com/cbg-ethz/InDelFixer/";)
+    (synopsis "Iterative and sensitive NGS sequence aligner")
+    (description "InDelFixer is a sensitive aligner for 454, Illumina and
+PacBio data, employing a full Smith-Waterman alignment against a reference.
+This Java command line application aligns Next-Generation Sequencing (NGS) and
+third-generation reads to a set of reference sequences, by a prior fast k-mer
+matching and removes indels, causing frame shifts.  In addition, only a
+specific region can be considered.  An iterative refinement of the alignment
+can be performed, by alignment against the consensus sequence with wobbles.
+The output is in SAM format.")
+    (license license:gpl3+)))
+
 (define-public libsbml
   (package
     (name "libsbml")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]