unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38259] [PATCH]  gnu: Add r-harmony.
@ 2019-11-18 17:22 Mădălin Ionel Patrașcu
  2019-11-21 10:21 ` bug#38259: " Ludovic Courtès
  2019-11-21 10:47 ` [bug#38259] " Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Mădălin Ionel Patrașcu @ 2019-11-18 17:22 UTC (permalink / raw)
  To: 38259; +Cc: Mădălin Ionel Patrașcu

    * gnu/packages/bioinformatics.scm (r-harmony): New variable.
---
 gnu/packages/bioinformatics.scm | 38 ++++++++++++++++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 07c70fb82c..5da95d66a6 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -11,7 +11,7 @@
 ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
 ;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
-;;; Copyright © 2018 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
+;;; Copyright © 2018, 2019 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
 ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
 ;;;
@@ -15349,3 +15349,39 @@ methylation metrics from them.  MethylDackel requires an indexed fasta file
 containing the reference genome as well.")
     ;; See https://github.com/dpryan79/MethylDackel/issues/85
     (license license:expat)))
+
+(define-public r-harmony
+  (let ((commit "1a6d77aae524a08a2ca91737a152ab2047ccee78")
+        (revision "1"))
+    (package
+      (name "r-harmony")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/immunogenomics/harmony.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1905qsbl5iv3kxki73gmyzshyb8zc6asdaymywndscn7mjkwm7aw"))))
+      (build-system r-build-system)
+      (propagated-inputs
+       `(("r-cowplot" ,r-cowplot)
+         ("r-dplyr" ,r-dplyr)
+         ("r-ggplot2" ,r-ggplot2)
+         ("r-irlba" ,r-irlba)
+         ("r-matrix" ,r-matrix)
+         ("r-rcpp" ,r-rcpp)
+         ("r-rcpparmadillo" ,r-rcpparmadillo)
+         ("r-rcppprogress" ,r-rcppprogress)
+         ("r-rlang" ,r-rlang)
+         ("r-tibble" ,r-tibble)
+         ("r-tidyr" ,r-tidyr)))
+      (home-page "https://github.com/immunogenomics/harmony.git")
+      (synopsis "Fast, sensitive, and accurate integration of single cell data")
+      (description
+       "Harmony software is the R implementation of the algorithm with the same
+name for single cell integration, described in Korsunsky et al 2018.  Package
+includes a standalone Harmony function and interfaces to external frameworks.")
+      (license license:gpl3))))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#38259: [PATCH]  gnu: Add r-harmony.
  2019-11-18 17:22 [bug#38259] [PATCH] gnu: Add r-harmony Mădălin Ionel Patrașcu
@ 2019-11-21 10:21 ` Ludovic Courtès
  2019-11-21 10:47 ` [bug#38259] " Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2019-11-21 10:21 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu; +Cc: 38259-done

[-- Attachment #1: Type: text/plain, Size: 227 bytes --]

Hello Mădălin,

Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> skribis:

>     * gnu/packages/bioinformatics.scm (r-harmony): New variable.

Applied with the changes below.

Thank you!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 751 bytes --]

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5da95d66a6..d1d17dc3d5 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -15382,6 +15382,6 @@ containing the reference genome as well.")
       (synopsis "Fast, sensitive, and accurate integration of single cell data")
       (description
        "Harmony software is the R implementation of the algorithm with the same
-name for single cell integration, described in Korsunsky et al 2018.  Package
+name for single cell integration, described in Korsunsky et al 2018.  The package
 includes a standalone Harmony function and interfaces to external frameworks.")
-      (license license:gpl3))))
+      (license license:gpl3+))))

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#38259] [PATCH]  gnu: Add r-harmony.
  2019-11-18 17:22 [bug#38259] [PATCH] gnu: Add r-harmony Mădălin Ionel Patrașcu
  2019-11-21 10:21 ` bug#38259: " Ludovic Courtès
@ 2019-11-21 10:47 ` Ludovic Courtès
  2019-11-21 10:58   ` zimoun
  1 sibling, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2019-11-21 10:47 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu; +Cc: 38259

Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> skribis:

>     * gnu/packages/bioinformatics.scm (r-harmony): New variable.

It took me a while but I then realized the package was already in, only
in a different file, cran.scm.

So I’ve not pushed your version, but let us know if you’d like to change
the existing package!

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#38259] [PATCH] gnu: Add r-harmony.
  2019-11-21 10:47 ` [bug#38259] " Ludovic Courtès
@ 2019-11-21 10:58   ` zimoun
  0 siblings, 0 replies; 4+ messages in thread
From: zimoun @ 2019-11-21 10:58 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 38259, Mădălin Ionel Patrașcu

Hi,

On Thu, 21 Nov 2019 at 11:48, Ludovic Courtès <ludo@gnu.org> wrote:

> It took me a while but I then realized the package was already in, only
> in a different file, cran.scm.

IMHO, some packages need to be moved in the right files.
For example this one. It is not a CRAN package because it does not
come from the CRAN archive but a Bioinformatics one written in R
language.


In the same topic, I moved [1] packages fetched from the CRAN archive
to the cran.scm file.

[1] https://debbugs.gnu.org/cgi/bugreport.cgi?bug=38184


To me, keeping a clear file organisation helps. :-)


All the best,
simon

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-11-21 11:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-18 17:22 [bug#38259] [PATCH] gnu: Add r-harmony Mădălin Ionel Patrașcu
2019-11-21 10:21 ` bug#38259: " Ludovic Courtès
2019-11-21 10:47 ` [bug#38259] " Ludovic Courtès
2019-11-21 10:58   ` zimoun

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).