all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Navid Afkhami <navid.afkhami@mdc-berlin.de>
To: 62098@debbugs.gnu.org
Cc: Navid Afkhami <navid.afkhami@mdc-berlin.de>
Subject: [bug#62098] [PATCH] gnu: Add r-hdcytodata.
Date: Fri, 10 Mar 2023 16:16:12 +0000	[thread overview]
Message-ID: <20230310161612.26795-1-navid.afkhami@mdc-berlin.de> (raw)

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

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index d603bd42c1..1cf33501d6 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -560,6 +560,46 @@ (define-public r-hdo-db
 https://github.com/DiseaseOntology/HumanDiseaseOntology/tree/main/src/ontology}.")
     (license license:artistic2.0)))
 
+(define-public r-hdcytodata
+  (package
+    (name "r-hdcytodata")
+    (version "1.18.0")
+    (source (origin
+              (method url-fetch)
+              (uri (bioconductor-uri "HDCytoData" version
+                                     'experiment))
+              (sha256
+               (base32
+                "1fn8q6ds10z3ymdarkfyh88pcqnrry9yhzammp84vf86f0bl8mrc"))))
+    (properties `((upstream-name . "HDCytoData")))
+    (build-system r-build-system)
+    (arguments
+     (list #:phases '(modify-phases %standard-phases
+                       (add-after 'unpack 'set-HOME
+                         (lambda _
+                           (setenv "HOME" "/tmp")))
+                       (add-after 'unpack 'avoid-internet-access
+                         (lambda _
+                           (setenv "GUIX_BUILD" "yes")
+                           (substitute* "R/zzz.R"
+                             (("createHubAccessors.*" m)
+                              (string-append
+                               "if (Sys.getenv(\"GUIX_BUILD\") == \"\") {" m
+                               "}"))))))))
+    (propagated-inputs (list r-experimenthub r-flowcore r-summarizedexperiment))
+    (native-inputs (list r-knitr))
+    (home-page "https://github.com/lmweber/HDCytoData")
+    (synopsis
+     "Set of high-dimensional flow cytometry and mass cytometry benchmark datasets")
+    (description
+     "HDCytoData contains a set of high-dimensional cytometry benchmark datasets.
+These datasets are formatted into SummarizedExperiment and flowSet
+Bioconductor object formats, including all required metadata.  Row metadata
+includes sample IDs, group IDs, patient IDs, reference cell population or
+cluster labels and labels identifying spiked in cells.  Column metadata
+includes channel names, protein marker names, and protein marker classes.")
+    (license license:expat)))
+
 (define-public r-homo-sapiens
   (package
     (name "r-homo-sapiens")
-- 
2.34.1





             reply	other threads:[~2023-03-10 16:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-10 16:16 Navid Afkhami [this message]
2023-06-03 11:15 ` bug#62098: [PATCH] gnu: Add r-hdcytodata Christopher Baines

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

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

  git send-email \
    --in-reply-to=20230310161612.26795-1-navid.afkhami@mdc-berlin.de \
    --to=navid.afkhami@mdc-berlin.de \
    --cc=62098@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.