GNU bug report logs - #42119
[PATCH] gnu: Add r-fhtest and its dependencies

Previous Next

Package: guix-patches;

Reported by: Lo Peter <peterloleungyau <at> gmail.com>

Date: Mon, 29 Jun 2020 08:03:02 UTC

Severity: normal

Tags: patch

Done: Ricardo Wurmus <rekado <at> elephly.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 42119 in the body.
You can then email your comments to 42119 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#42119; Package guix-patches. (Mon, 29 Jun 2020 08:03:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Lo Peter <peterloleungyau <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 29 Jun 2020 08:03:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lo Peter <peterloleungyau <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add r-fhtest and its dependencies
Date: Mon, 29 Jun 2020 16:02:36 +0800
Dear all,

I am submitting a patch series for r-fhtest and its dependencies.
Note that one of its dependency r-kmsurv is not included here, because
I previously submitted its patch in patch 2 of bug#42107.

Regards,
Peter




Information forwarded to guix-patches <at> gnu.org:
bug#42119; Package guix-patches. (Mon, 29 Jun 2020 08:04:01 GMT) Full text and rfc822 format available.

Message #8 received at 42119 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42119 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 1/5] gnu: Add r-icens.
Date: Mon, 29 Jun 2020 16:03:36 +0800
* gnu/packages/bioconductor.scm (r-icens): New variable.
---
 gnu/packages/bioconductor.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 002f4a0edb..763c219d9e 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -8117,3 +8117,26 @@ dimensional mass cytometry data.")
 Tool) analysis automatic by constructing a HTTP POST request according to
 user's input and automatically retrieving results from GREAT web server.")
     (license license:expat)))
+
+(define-public r-icens
+  (package
+    (name "r-icens")
+    (version "1.60.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (bioconductor-uri "Icens" version))
+        (sha256
+          (base32
+            "0fh7wgkrw20f61p06i87nccnbig9wv4m0jcg7cx1rw7g2ndnabgp"))))
+    (properties `((upstream-name . "Icens")))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-survival" ,r-survival)))
+    (home-page
+      "https://bioconductor.org/packages/release/bioc/html/Icens.html")
+    (synopsis
+      "NPMLE for Censored and Truncated Data")
+    (description
+      "Many functions for computing the NPMLE for censored and
+truncated data.")
+    (license license:artistic2.0)))
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#42119; Package guix-patches. (Mon, 29 Jun 2020 08:04:02 GMT) Full text and rfc822 format available.

Message #11 received at 42119 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42119 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 2/5] gnu: Add r-mlecens.
Date: Mon, 29 Jun 2020 16:03:37 +0800
* gnu/packages/cran.scm (r-mlecens): New variable.
---
 gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ab5e57c0e2..8be110a9bd 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22325,3 +22325,32 @@ across a wide array of bioinformatic R packages.")
 and clustering large sequence datasets using fast alignment-free k-mer
 counting and recursive k-means partitioning.")
     (license license:gpl3)))
+
+(define-public r-mlecens
+  (package
+    (name "r-mlecens")
+    (version "0.1-4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "MLEcens" version))
+        (sha256
+          (base32
+            "0zlmrcjraypscgs2v0w4s4hm7qccsmaz4hjsgqpn0058vx622945"))))
+    (properties `((upstream-name . "MLEcens")))
+    (build-system r-build-system)
+    (home-page "http://stat.ethz.ch/~maathuis/")
+    (synopsis
+      "Computation of the MLE for bivariate (interval) censored data")
+    (description
+      "This package contains functions to compute the nonparametric
+maximum likelihood estimator (MLE) for the bivariate distribution
+of (X,Y), when realizations of (X,Y) cannot be observed directly.  To
+be more precise, we consider the situation where we observe a set of
+rectangles that are known to contain the unobservable realizations
+of (X,Y).  We compute the MLE based on such a set of rectangles.  The
+methods can also be used for univariate censored data (see data set
+@code{cosmesis}), and for censored data with competing risks (see data
+set @code{menopause}).  We also provide functions to visualize the
+observed data and the MLE.")
+    (license license:gpl2+)))
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#42119; Package guix-patches. (Mon, 29 Jun 2020 08:04:02 GMT) Full text and rfc822 format available.

Message #14 received at 42119 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42119 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 3/5] gnu: Add r-perm.
Date: Mon, 29 Jun 2020 16:03:38 +0800
* gnu/packages/cran.scm (r-perm): New variable.
---
 gnu/packages/cran.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8be110a9bd..fe1a8e0b46 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22354,3 +22354,24 @@ methods can also be used for univariate censored data (see data set
 set @code{menopause}).  We also provide functions to visualize the
 observed data and the MLE.")
     (license license:gpl2+)))
+
+(define-public r-perm
+  (package
+    (name "r-perm")
+    (version "1.0-0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "perm" version))
+        (sha256
+          (base32
+            "0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
+    (properties `((upstream-name . "perm")))
+    (build-system r-build-system)
+    (home-page
+      "https://cran.r-project.org/web/packages/perm/")
+    (synopsis
+      "Exact or Asymptotic permutation tests")
+    (description
+      "Perform Exact or Asymptotic permutation tests")
+    (license (list license:gpl2+ license:gpl3+))))
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#42119; Package guix-patches. (Mon, 29 Jun 2020 08:04:03 GMT) Full text and rfc822 format available.

Message #17 received at 42119 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42119 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 4/5] gnu: Add r-interval.
Date: Mon, 29 Jun 2020 16:03:39 +0800
* gnu/packages/cran.scm (r-interval): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index fe1a8e0b46..d3cd199130 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22375,3 +22375,30 @@ observed data and the MLE.")
     (description
       "Perform Exact or Asymptotic permutation tests")
     (license (list license:gpl2+ license:gpl3+))))
+
+(define-public r-interval
+  (package
+    (name "r-interval")
+    (version "1.1-0.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "interval" version))
+        (sha256
+          (base32
+            "1lln9jkli28i4wivwzqrsxvv2n15560f7msjy5gssrm45vxrxms8"))))
+    (properties `((upstream-name . "interval")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-icens" ,r-icens)
+        ("r-mlecens" ,r-mlecens)
+        ("r-perm" ,r-perm)
+        ("r-survival" ,r-survival)))
+    (home-page
+      "https://cran.r-project.org/web/packages/interval/")
+    (synopsis
+      "Weighted Logrank Tests and NPMLE for interval censored data")
+    (description
+      "This package provides functions to fit nonparametric survival
+curves, plot them, and perform logrank or Wilcoxon type tests.")
+    (license license:gpl2+)))
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#42119; Package guix-patches. (Mon, 29 Jun 2020 08:04:03 GMT) Full text and rfc822 format available.

Message #20 received at 42119 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42119 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 5/5] gnu: Add r-fhtest.
Date: Mon, 29 Jun 2020 16:03:40 +0800
* gnu/packages/cran.scm (r-fhtest): New variable.
---
 gnu/packages/cran.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d3cd199130..3d02139f87 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22402,3 +22402,34 @@ observed data and the MLE.")
       "This package provides functions to fit nonparametric survival
 curves, plot them, and perform logrank or Wilcoxon type tests.")
     (license license:gpl2+)))
+
+(define-public r-fhtest
+  (package
+    (name "r-fhtest")
+    (version "1.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "FHtest" version))
+        (sha256
+          (base32
+            "1wsn0j9ydpp9nfswiqg21p09kgkvaq8fh0y0h8syqgizah7i8vs2"))))
+    (properties `((upstream-name . "FHtest")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-interval" ,r-interval)
+        ("r-kmsurv" ,r-kmsurv)
+        ("r-mass" ,r-mass)
+        ("r-perm" ,r-perm)
+        ("r-survival" ,r-survival)))
+    (home-page
+      "https://cran.r-project.org/web/packages/FHtest/")
+    (synopsis
+      "Tests for Survival Data Based on the Fleming-Harrington Class")
+    (description
+      "This package provides functions to compare two or more survival
+curves with: a) The Fleming-Harrington test for right-censored data
+based on permutations and on counting processes.  b) An extension of
+the Fleming-Harrington test for interval-censored data based on a
+permutation distribution and on a score vector distribution.")
+    (license license:gpl2+)))
-- 
2.17.1





Reply sent to Ricardo Wurmus <rekado <at> elephly.net>:
You have taken responsibility. (Fri, 11 Sep 2020 19:36:01 GMT) Full text and rfc822 format available.

Notification sent to Lo Peter <peterloleungyau <at> gmail.com>:
bug acknowledged by developer. (Fri, 11 Sep 2020 19:36:01 GMT) Full text and rfc822 format available.

Message #25 received at 42119-done <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Lo Peter <peterloleungyau <at> gmail.com>
Cc: 42119-done <at> debbugs.gnu.org
Subject: Re: [bug#42119] [PATCH] gnu: Add r-fhtest and its dependencies
Date: Fri, 11 Sep 2020 21:37:06 +0200
Hi Peter,

> I am submitting a patch series for r-fhtest and its dependencies.
> Note that one of its dependency r-kmsurv is not included here, because
> I previously submitted its patch in patch 2 of bug#42107.

Thank you for this patch set.  I moved r-fhtest and r-interval to (gnu
packages bioconductor) because they (untypically for CRAN packages)
depend on Bioconductor things.

I heavily edited the description and synopses and pushed everything to
the “master” branch with commit 7e88ee9f02.

-- 
Ricardo




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 10 Oct 2020 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 191 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.