guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add r-msa.


From: guix-commits
Subject: branch master updated: gnu: Add r-msa.
Date: Mon, 27 Feb 2023 14:38:54 -0500

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 4db367f8ae gnu: Add r-msa.
4db367f8ae is described below

commit 4db367f8ae4e704784ced52b552437ca00b94b89
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Feb 27 20:28:53 2023 +0100

    gnu: Add r-msa.
    
    * gnu/packages/bioconductor.scm (r-msa): New variable.
---
 gnu/packages/bioconductor.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index fa4b8ef89b..8abbdfd026 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -6850,6 +6850,37 @@ characterization and visualization of a wide range of 
mutational patterns
 in SNV base substitution data.")
     (license license:expat)))
 
+(define-public r-msa
+  (package
+    (name "r-msa")
+    (version "1.30.1")
+    (source (origin
+              (method url-fetch)
+              (uri (bioconductor-uri "msa" version))
+              (sha256
+               (base32
+                "064hmry0zhmpchxgjsw0krsybr9v9gbsz26zmj2a39pg1nggwbq4"))))
+    (properties `((upstream-name . "msa")))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-biocgenerics
+           r-biostrings
+           r-iranges
+           r-rcpp
+           r-s4vectors))
+    (native-inputs (list r-knitr))
+    (home-page "http://www.bioinf.jku.at/software/msa/";)
+    (synopsis "Multiple sequence alignment")
+    (description
+     "The msa package provides a unified R/Bioconductor interface to the
+multiple sequence alignment algorithms ClustalW, ClustalOmega, and Muscle.
+All three algorithms are integrated in the package, therefore, they do not
+depend on any external software tools and are available for all major
+platforms.  The multiple sequence alignment algorithms are complemented by a
+function for pretty-printing multiple sequence alignments using the LaTeX
+package TeXshade.")
+    (license license:gpl2+)))
+
 (define-public r-msnbase
   (package
     (name "r-msnbase")



reply via email to

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