unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66917] gnu: Add r-ewastools and r-mblm.
@ 2023-11-03 14:53 Mădălin Ionel Patrașcu
  2023-11-03 14:55 ` [bug#66917] [PATCH 1/2] gnu: Add r-mblm Mădălin Ionel Patrașcu
  0 siblings, 1 reply; 4+ messages in thread
From: Mădălin Ionel Patrașcu @ 2023-11-03 14:53 UTC (permalink / raw)
  To: 66917

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

* gnu/packages/cran.scm (r-mblm): New variable.





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

* [bug#66917] [PATCH 1/2] gnu: Add r-mblm.
  2023-11-03 14:53 [bug#66917] gnu: Add r-ewastools and r-mblm Mădălin Ionel Patrașcu
@ 2023-11-03 14:55 ` Mădălin Ionel Patrașcu
  2023-11-03 14:55   ` [bug#66917] [PATCH 2/2] gnu: Add r-ewastools Mădălin Ionel Patrașcu
  2023-11-04 16:05   ` bug#66917: [PATCH 1/2] gnu: Add r-mblm Ricardo Wurmus
  0 siblings, 2 replies; 4+ messages in thread
From: Mădălin Ionel Patrașcu @ 2023-11-03 14:55 UTC (permalink / raw)
  To: 66917; +Cc: Ricardo Wurmus

* gnu/packages/cran.scm (r-mblm): New variable.

Change-Id: Iddfa9bc03a4e5782623253cb70d1ae888545e2ec
---
 gnu/packages/cran.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f2a035555b..ec7200749a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3149,6 +3149,27 @@ (define-public r-matrix-utils
 objects.")
     (license license:gpl3)))
 
+(define-public r-mblm
+  (package
+    (name "r-mblm")
+    (version "0.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "mblm" version))
+       (sha256
+        (base32 "1fipb3bryaimr30lcxsxrn0ymv24z39swca7s4z7p9xcfg3ban1b"))))
+    (properties `((upstream-name . "mblm")))
+    (build-system r-build-system)
+    (home-page "https://www.r-project.org")
+    (synopsis "Median-based linear models")
+    (description
+     "This package provides linear models based on Theil-Sen single median and
+Siegel repeated medians.  They are very robust (29 or 50 percent breakdown point,
+respectively), and if no outliers are present, the estimators are very similar
+to OLS.")
+    (license license:gpl2+)))
+
 (define-public r-mboost
   (package
    (name "r-mboost")

base-commit: a0a377fdd6c873aeb6340afeddcd23b4ead7657d
-- 
2.41.0





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

* [bug#66917] [PATCH 2/2] gnu: Add r-ewastools.
  2023-11-03 14:55 ` [bug#66917] [PATCH 1/2] gnu: Add r-mblm Mădălin Ionel Patrașcu
@ 2023-11-03 14:55   ` Mădălin Ionel Patrașcu
  2023-11-04 16:05   ` bug#66917: [PATCH 1/2] gnu: Add r-mblm Ricardo Wurmus
  1 sibling, 0 replies; 4+ messages in thread
From: Mădălin Ionel Patrașcu @ 2023-11-03 14:55 UTC (permalink / raw)
  To: 66917; +Cc: rekado

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

Change-Id: I4117dbee188c7d9547fe63b2b89ec9258bbda60b
---
 gnu/packages/bioinformatics.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index a47e84bc33..11ca777fa2 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -876,6 +876,38 @@ (define-public r-conqur
 simultaneously considered.")
       (license license:gpl3))))
 
+(define-public r-ewastools
+  (let ((commit "f7646cacd73266708479b3fea5d625054d179f95")
+        (revision "1"))
+    (package
+      (name "r-ewastools")
+      (version (git-version "1.7.2" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/hhhh5/ewastools/")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0irarlnxfnasa755adxsn67rxsy01zwhjhw18g4cag08cqiyyw41"))))
+      (properties `((upstream-name . "ewastools")))
+      (build-system r-build-system)
+      (propagated-inputs
+       (list r-data-table
+             r-igraph
+             r-illuminaio
+             r-mblm
+             r-quadprog))
+      (native-inputs (list r-knitr))
+      (home-page "https://github.com/hhhh5/ewastools/")
+      (synopsis
+       "Quality control toolset for the Illumina Infinium DNA methylation")
+      (description
+       "Collection of useful functions for working with DNA methylation
+micro-array data.")
+      (license license:unlicense))))
+
 (define-public r-numbat
   (let ((commit "4ab7752e7d267a3f443756675728521a9b0a7295")
         (revision "1"))
-- 
2.41.0





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

* bug#66917: [PATCH 1/2] gnu: Add r-mblm.
  2023-11-03 14:55 ` [bug#66917] [PATCH 1/2] gnu: Add r-mblm Mădălin Ionel Patrașcu
  2023-11-03 14:55   ` [bug#66917] [PATCH 2/2] gnu: Add r-ewastools Mădălin Ionel Patrașcu
@ 2023-11-04 16:05   ` Ricardo Wurmus
  1 sibling, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2023-11-04 16:05 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu; +Cc: 66917-done


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

> * gnu/packages/cran.scm (r-mblm): New variable.

I applied this series with minor changes.  Thanks!

-- 
Ricardo




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

end of thread, other threads:[~2023-11-04 16:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-03 14:53 [bug#66917] gnu: Add r-ewastools and r-mblm Mădălin Ionel Patrașcu
2023-11-03 14:55 ` [bug#66917] [PATCH 1/2] gnu: Add r-mblm Mădălin Ionel Patrașcu
2023-11-03 14:55   ` [bug#66917] [PATCH 2/2] gnu: Add r-ewastools Mădălin Ionel Patrașcu
2023-11-04 16:05   ` bug#66917: [PATCH 1/2] gnu: Add r-mblm Ricardo Wurmus

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