GNU bug report logs -
#46937
(no subject)
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 46937 in the body.
You can then email your comments to 46937 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#46937
; Package
guix-patches
.
(Fri, 05 Mar 2021 01:19:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
Your message did not contain a Subject field. They are recommended and
useful because the title of a $gBug is determined using this field.
Please remember to include a Subject field in your messages in future.
(Fri, 05 Mar 2021 01:19:02 GMT) Full text and rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Information forwarded
to
guix-patches <at> gnu.org
:
bug#46937
; Package
guix-patches
.
(Fri, 05 Mar 2021 01:22:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 46937 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/cran.scm (r-rcppthread): New variable.
---
gnu/packages/cran.scm | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1d574b9768..4ac4b4cae1 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -11,7 +11,7 @@
;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94 <at> gmail.com>
;;; Copyright © 2018 Charlie Ritter <chewzeirta <at> posteo.net>
;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen <at> fastmail.net>
-;;; Copyright © 2018, 2020 Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>
+;;; Copyright © 2018, 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>
;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15 <at> gmail.com>
;;; Copyright © 2018 Leo Famulari <leo <at> famulari.name>
;;; Copyright © 2018 Marius Bakke <mbakke <at> fastmail.com>
@@ -2668,6 +2668,27 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
@code{citation(\"Rcpp\")} for details on these last two.")
(license license:gpl2+)))
+(define-public r-rcppthread
+ (package
+ (name "r-rcppthread")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "RcppThread" version))
+ (sha256
+ (base32
+ "1xfcxrny779kgknlvnc4j02ifprnakndnkhx8bhy50d39vp4hjjl"))))
+ (properties `((upstream-name . "RcppThread")))
+ (build-system r-build-system)
+ (home-page
+ "https://github.com/tnagler/RcppThread")
+ (synopsis "R threading in C++")
+ (description
+ "This package provides a C++11-style thread class and thread pool that can
+safely be interrupted from R.")
+ (license license:expat)))
+
(define-public r-bindr
(package
(name "r-bindr")
--
2.30.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#46937
; Package
guix-patches
.
(Fri, 05 Mar 2021 01:22:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 46937 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/bioconductor.scm (r-universalmotif): New variable.
---
gnu/packages/bioconductor.scm | 53 ++++++++++++++++++++++++++++++++++-
1 file changed, 52 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index a4d97fad65..55a9b07509 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -4,7 +4,7 @@
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me <at> tobias.gr>
;;; Copyright © 2019, 2020 Simon Tournier <zimon.toutoune <at> gmail.com>
;;; Copyright © 2020 Peter Lo <peterloleungyau <at> gmail.com>
-;;; Copyright © 2020 Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>
+;;; Copyright © 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>
;;; Copyright © 2020 Jakub Kądziołka <kuba <at> kadziolka.net>
;;;
;;; This file is part of GNU Guix.
@@ -7435,6 +7435,57 @@ data. This modified test allows for testing differential expression in qPCR
data.")
(license license:gpl2+)))
+(define-public r-universalmotif
+ (package
+ (name "r-universalmotif")
+ (version "1.8.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "universalmotif" version))
+ (sha256
+ (base32
+ "1ys2kbayc1rzv8nzi60208yfslm4kzynndfg7vw2n0c30dvzycrc"))))
+ (properties
+ `((upstream-name . "universalmotif")))
+ (build-system r-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-link
+ (lambda _
+ (substitute* "src/Makevars"
+ (("/usr/bin/strip") (which "strip")))
+ #t)))))
+ (propagated-inputs
+ `(("r-biocgenerics" ,r-biocgenerics)
+ ("r-biostrings" ,r-biostrings)
+ ("r-ggplot2" ,r-ggplot2)
+ ("r-ggseqlogo" ,r-ggseqlogo)
+ ("r-iranges" ,r-iranges)
+ ("r-mass" ,r-mass)
+ ("r-rcpp" ,r-rcpp)
+ ("r-rcppthread" ,r-rcppthread)
+ ("r-rdpack" ,r-rdpack)
+ ("r-rlang" ,r-rlang)
+ ("r-s4vectors" ,r-s4vectors)
+ ("r-yaml" ,r-yaml)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page
+ "https://bioconductor.org/packages/universalmotif/")
+ (synopsis
+ "Specific structures importer, modifier, and exporter for R")
+ (description
+ "This package allows importing most common @dfn{specific structure}
+(motif) types into R for use by functions provided by other Bioconductor
+motif-related packages. Motifs can be exported into most major motif formats
+from various classes as defined by other Bioconductor packages. A suite of
+motif and sequence manipulation and analysis functions are included, including
+enrichment, comparison, P-value calculation, shuffling, trimming, higher-order
+motifs, and others.")
+ (license license:gpl3)))
+
;; This is a CRAN package, but it depends on Bioconductor packages, so we put
;; it here.
(define-public r-activedriverwgs
--
2.30.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#46937
; Package
guix-patches
.
(Fri, 05 Mar 2021 01:22:03 GMT)
Full text and
rfc822 format available.
Message #14 received at 46937 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/bioconductor.scm (r-circrnaprofiler): New variable.
---
gnu/packages/bioconductor.scm | 53 +++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 55a9b07509..2da2be6ae3 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -6810,6 +6810,59 @@ accessibility data.")
,@(alist-delete "r-monocle"
(package-propagated-inputs r-cicero)))))))
+(define-public r-circrnaprofiler
+ (package
+ (name "r-circrnaprofiler")
+ (version "1.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "circRNAprofiler" version))
+ (sha256
+ (base32
+ "1rwpl9a5p5242aiapik0vf4ywqh7m6phzl8z8qmzcy0imbx7mpbn"))))
+ (properties
+ `((upstream-name . "circRNAprofiler")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-annotationhub" ,r-annotationhub)
+ ("r-biostrings" ,r-biostrings)
+ ("r-bsgenome" ,r-bsgenome)
+ ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
+ ("r-deseq2" ,r-deseq2)
+ ("r-dplyr" ,r-dplyr)
+ ("r-edger" ,r-edger)
+ ("r-genomeinfodb" ,r-genomeinfodb)
+ ("r-genomicranges" ,r-genomicranges)
+ ("r-ggplot2" ,r-ggplot2)
+ ("r-gwascat" ,r-gwascat)
+ ("r-iranges" ,r-iranges)
+ ("r-magrittr" ,r-magrittr)
+ ("r-r-utils" ,r-r-utils)
+ ("r-readr" ,r-readr)
+ ("r-reshape2" ,r-reshape2)
+ ("r-rlang" ,r-rlang)
+ ("r-rtracklayer" ,r-rtracklayer)
+ ("r-s4vectors" ,r-s4vectors)
+ ("r-seqinr" ,r-seqinr)
+ ("r-stringi" ,r-stringi)
+ ("r-stringr" ,r-stringr)
+ ("r-universalmotif" ,r-universalmotif)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page
+ "https://github.com/Aufiero/circRNAprofiler")
+ (synopsis
+ "Computational framework for the downstream analysis of circular RNA's")
+ (description
+ "@code{r-circrnaprofiler} is a computational framework for a comprehensive
+in silico analysis of @dfn{circular RNA} (circRNAs). This computational
+framework allows to combine and analyze circRNAs previously detected by
+multiple publicly available annotation-based circRNA detection tools. It
+covers different aspects of circRNAs analysis from differential expression
+analysis, evolutionary conservation, biogenesis to functional analysis.")
+ (license license:gpl3)))
+
(define-public r-cistopic
(let ((commit "29abd8df9afb60ff27ac3f0a590930debe926950")
(revision "0"))
--
2.30.1
Reply sent
to
Ricardo Wurmus <rekado <at> elephly.net>
:
You have taken responsibility.
(Fri, 05 Mar 2021 15:22:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>
:
bug acknowledged by developer.
(Fri, 05 Mar 2021 15:22:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 46937-done <at> debbugs.gnu.org (full text, mbox):
Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de> writes:
> * gnu/packages/cran.scm (r-rcppthread): New variable. […]
> * gnu/packages/bioconductor.scm (r-universalmotif): New variable. […]
> * gnu/packages/bioconductor.scm (r-circrnaprofiler): New variable.
Applied with minor changes: we no longer end phases with #t.
Thank you!
--
Ricardo
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 03 Apr 2021 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 74 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.