unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: zimoun <zimon.toutoune@gmail.com>
To: 47171@debbugs.gnu.org
Cc: zimoun <zimon.toutoune@gmail.com>
Subject: [bug#47171] [PATCH 10/10] gnu: r-delayedarray: Move to (gnu packages bioconductor).
Date: Mon, 15 Mar 2021 19:09:04 +0100	[thread overview]
Message-ID: <20210315180904.8346-10-zimon.toutoune@gmail.com> (raw)
In-Reply-To: <20210315180904.8346-1-zimon.toutoune@gmail.com>

* gnu/packages/bioinformatics.scm (r-delayedarray): Move from here...
* gnu/packages/bioconductor.scm (r-delayedarray): ...to here.
---
 gnu/packages/bioconductor.scm   | 33 +++++++++++++++++++++++++++++++++
 gnu/packages/bioinformatics.scm | 33 ---------------------------------
 2 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index c659bdd09e..9212165706 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -1212,6 +1212,39 @@ data.  In addition, provides numerous plotting functions for commonly
 used visualizations.")
    (license license:artistic2.0)))
 
+(define-public r-delayedarray
+  (package
+    (name "r-delayedarray")
+    (version "0.16.2")
+    (source (origin
+              (method url-fetch)
+              (uri (bioconductor-uri "DelayedArray" version))
+              (sha256
+               (base32
+                "09lpj951v1afxkrnjvnhzp4qgklq23ykdwlny7k1lyfcdy9q6wm0"))))
+    (properties
+     `((upstream-name . "DelayedArray")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-biocgenerics" ,r-biocgenerics)
+       ("r-s4vectors" ,r-s4vectors)
+       ("r-iranges" ,r-iranges)
+       ("r-matrix" ,r-matrix)
+       ("r-matrixgenerics" ,r-matrixgenerics)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://bioconductor.org/packages/DelayedArray")
+    (synopsis "Delayed operations on array-like objects")
+    (description
+     "Wrapping an array-like object (typically an on-disk object) in a
+@code{DelayedArray} object allows one to perform common array operations on it
+without loading the object in memory.  In order to reduce memory usage and
+optimize performance, operations on the object are either delayed or executed
+using a block processing mechanism.  Note that this also works on in-memory
+array-like objects like @code{DataFrame} objects (typically with Rle columns),
+@code{Matrix} objects, and ordinary arrays and data frames.")
+    (license license:artistic2.0)))
+
 (define-public r-bluster
   (package
    (name "r-bluster")
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 05805d1a8b..bc342b5de8 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7691,39 +7691,6 @@ including VCF header and contents in RDF and JSON.")
     (home-page "https://github.com/vcflib/bio-vcf")
     (license license:expat)))
 
-(define-public r-delayedarray
-  (package
-    (name "r-delayedarray")
-    (version "0.16.2")
-    (source (origin
-              (method url-fetch)
-              (uri (bioconductor-uri "DelayedArray" version))
-              (sha256
-               (base32
-                "09lpj951v1afxkrnjvnhzp4qgklq23ykdwlny7k1lyfcdy9q6wm0"))))
-    (properties
-     `((upstream-name . "DelayedArray")))
-    (build-system r-build-system)
-    (propagated-inputs
-     `(("r-biocgenerics" ,r-biocgenerics)
-       ("r-s4vectors" ,r-s4vectors)
-       ("r-iranges" ,r-iranges)
-       ("r-matrix" ,r-matrix)
-       ("r-matrixgenerics" ,r-matrixgenerics)))
-    (native-inputs
-     `(("r-knitr" ,r-knitr)))
-    (home-page "https://bioconductor.org/packages/DelayedArray")
-    (synopsis "Delayed operations on array-like objects")
-    (description
-     "Wrapping an array-like object (typically an on-disk object) in a
-@code{DelayedArray} object allows one to perform common array operations on it
-without loading the object in memory.  In order to reduce memory usage and
-optimize performance, operations on the object are either delayed or executed
-using a block processing mechanism.  Note that this also works on in-memory
-array-like objects like @code{DataFrame} objects (typically with Rle columns),
-@code{Matrix} objects, and ordinary arrays and data frames.")
-    (license license:artistic2.0)))
-
 (define-public r-summarizedexperiment
   (package
     (name "r-summarizedexperiment")
-- 
2.30.1





  parent reply	other threads:[~2021-03-15 18:39 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-15 18:07 [bug#47171] [PATCH 00/10] Move some Bioconductor packages to (gnu packages bioconductor) zimoun
2021-03-15 18:08 ` [bug#47171] [PATCH 01/10] gnu: r-limma: Move " zimoun
2021-03-15 18:08   ` [bug#47171] [PATCH 02/10] gnu: r-xvector: " zimoun
2021-03-15 18:08   ` [bug#47171] [PATCH 03/10] gnu: r-genomicranges: " zimoun
2021-03-15 18:08   ` [bug#47171] [PATCH 04/10] gnu: r-biobase: " zimoun
2021-03-15 18:08   ` [bug#47171] [PATCH 05/10] gnu: r-annotationdbi: " zimoun
2021-03-15 18:09   ` [bug#47171] [PATCH 06/10] gnu: r-biomart: " zimoun
2021-03-15 18:09   ` [bug#47171] [PATCH 07/10] gnu: r-biocparallel: " zimoun
2021-03-15 18:09   ` [bug#47171] [PATCH 08/10] gnu: r-biostrings: " zimoun
2021-03-15 18:09   ` [bug#47171] [PATCH 09/10] gnu: r-rsamtools: " zimoun
2021-03-15 18:09   ` zimoun [this message]
2021-03-15 22:33 ` bug#47171: [PATCH 00/10] Move some Bioconductor packages " Ricardo Wurmus
2021-03-15 23:56   ` [bug#47171] " Leo Famulari
2021-03-16 12:27     ` zimoun
2021-03-16 13:20       ` Ricardo Wurmus
2021-03-16 13:30         ` zimoun
2021-03-16 16:08           ` Ricardo Wurmus
2021-03-16 16:36             ` zimoun
2021-03-16 22:04               ` Ricardo Wurmus
2021-03-17 20:15                 ` zimoun
2021-03-17 20:14 ` [bug#47171] [PATCH v2 1/3] gnu: r-bisquerna: Move " zimoun
2021-03-17 20:14   ` [bug#47171] [PATCH v2 2/3] gnu: r-absfiltergsea: " zimoun
2021-03-17 20:14   ` [bug#47171] [PATCH v2 3/3] Revert "Revert some commits that caused `guix pull` to fail." zimoun
2021-03-31 19:29   ` bug#47171: [PATCH v2 1/3] gnu: r-bisquerna: Move to (gnu packages bioconductor) Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210315180904.8346-10-zimon.toutoune@gmail.com \
    --to=zimon.toutoune@gmail.com \
    --cc=47171@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).