[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add rscape.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add rscape. |
Date: |
Thu, 29 Jun 2023 16:27:08 -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 94ac93042f gnu: Add rscape.
94ac93042f is described below
commit 94ac93042f09b4ba68b7b64ed1feeebd3dab1ea4
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Fri Jun 23 17:43:54 2023 +0000
gnu: Add rscape.
* gnu/packages/bioinformatics.scm (rscape): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
gnu/packages/bioinformatics.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0999d066bf..f3ea86544d 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17253,6 +17253,30 @@ information... The package can also be used to
extract data from @code{.loom}
files.")
(license license:expat))))
+(define-public rscape
+ (package
+ (name "rscape")
+ (version "2.0.0.q")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://eddylab.org/software/rscape/"
+ "rscape_v" version ".tar.gz"))
+ (sha256
+ (base32
+ "1jabvm3fzh8iy4803ns12v1fsy28x6wdy8wx4ik8y0mfac4h787q"))))
+ (build-system gnu-build-system)
+ (propagated-inputs (list gsl openmpi))
+ (native-inputs (list automake autoconf))
+ (home-page "https://github.com/EddyRivasLab/R-scape")
+ (synopsis "RNA structural covariation above phylogenetic expectation")
+ (description
+ "R-scape discovers RNA secondary structure consensus elements.
+These elements include riboswitches and ribozymes. It utilizes probabilistic
+modeling of sequence alignments, explicitly considering folding dependencies.
+The tool enables the de novo search for new structural elements and
+facilitates comparative analysis of known RNA families.")
+ (license license:bsd-3)))
+
(define-public r-seurat-utils
(let ((commit "0b6f5b548a49148cfbeaa654e8a618c0a020afa5")
(revision "1"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add rscape.,
guix-commits <=