GNU bug report logs - #44033
[PATCH 1/3] gnu: Add r-decon.

Previous Next

Package: guix-patches;

Reported by: Aniket Patil <aniket112.patil <at> gmail.com>

Date: Fri, 16 Oct 2020 15:25:01 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

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 44033 in the body.
You can then email your comments to 44033 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#44033; Package guix-patches. (Fri, 16 Oct 2020 15:25:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aniket Patil <aniket112.patil <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 16 Oct 2020 15:25:01 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Aniket Patil <aniket112.patil <at> gmail.com>
Subject: [PATCH 1/3] gnu: Add r-decon.
Date: Fri, 16 Oct 2020 18:43:36 +0530
* gnu/packages/cran.scm (r-decon): New variable.
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 59a409f8e9..0370cdd993 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24596,3 +24596,26 @@ enrichment analysis (GSEA) calculation with or without the absolute filtering.
   Without filtering, users can perform (original) two-tailed or one-tailed
 absolute GSEA.")
     (license license:gpl2)))
+
+(define-public r-decon
+  (package
+    (name "r-decon")
+    (version "1.2-4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "decon" version))
+        (sha256
+          (base32
+            "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
+    (properties `((upstream-name . "decon")))
+    (build-system r-build-system)
+    (native-inputs `(("gfortran" ,gfortran)))
+    (home-page
+      "https://cran.r-project.org/web/packages/decon")
+    (synopsis
+      "Deconvolution Estimation in Measurement Error Models")
+    (description
+      "This package contains a collection of functions to deal with nonparametric measurement error problems using deconvolution kernel methods.  We focus two measurement error models in the package: (1) an additive measurement error model, where the goal is to estimate the density or distribution function from contaminated data; (2) nonparametric regression model with errors-in-variables.  The R functions allow the measurement errors to be either homoscedastic or heteroscedastic.  To make the deconvolution estimators computationally more efficient in R, we adapt the \"Fast Fourier Transform\" (FFT) algorithm for density estimation with error-free data to the deconvolution kernel estimation.  Several methods for the selection of the data-driven smoothing parameter are also provided in the package.  See details in: Wang, X.F.  and Wang, B. (2011).  Deconvolution estimation in measurement error models: The R package decon.  Journal of Statistical Software, 39(10), 1-24.")
+    (license license:gpl3+)))
+
-- 
2.28.0





Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Fri, 16 Oct 2020 15:30:02 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Aniket Patil <aniket112.patil <at> gmail.com>
Subject: [PATCH 2/3] gnu: Add r-locpol.
Date: Fri, 16 Oct 2020 18:43:37 +0530
* gnu/packages/cran.scm (r-locpol): New variable.
---
 gnu/packages/cran.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0370cdd993..1529849211 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24619,3 +24619,22 @@ absolute GSEA.")
       "This package contains a collection of functions to deal with nonparametric measurement error problems using deconvolution kernel methods.  We focus two measurement error models in the package: (1) an additive measurement error model, where the goal is to estimate the density or distribution function from contaminated data; (2) nonparametric regression model with errors-in-variables.  The R functions allow the measurement errors to be either homoscedastic or heteroscedastic.  To make the deconvolution estimators computationally more efficient in R, we adapt the \"Fast Fourier Transform\" (FFT) algorithm for density estimation with error-free data to the deconvolution kernel estimation.  Several methods for the selection of the data-driven smoothing parameter are also provided in the package.  See details in: Wang, X.F.  and Wang, B. (2011).  Deconvolution estimation in measurement error models: The R package decon.  Journal of Statistical Software, 39(10), 1-24.")
     (license license:gpl3+)))
 
+(define-public r-locpol
+  (package
+    (name "r-locpol")
+    (version "0.7-0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "locpol" version))
+        (sha256
+          (base32
+            "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
+    (properties `((upstream-name . "locpol")))
+    (build-system r-build-system)
+    (home-page
+      "https://cran.r-project.org/web/packages/locpol")
+    (synopsis "Kernel Local Polynomial Regression")
+    (description
+      "Computes local polynomial estimators for the regression and also density.  It comprises several different utilities to handle kernel estimators.")
+    (license license:gpl2+)))
-- 
2.28.0





Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Fri, 16 Oct 2020 15:30:02 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Aniket Patil <aniket112.patil <at> gmail.com>
Subject: [PATCH 3/3] gnu: Add r-lpme.
Date: Fri, 16 Oct 2020 18:43:38 +0530
* gnu/packages/cran.scm (r-lpme): 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 1529849211..27e5db1900 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24638,3 +24638,30 @@ absolute GSEA.")
     (description
       "Computes local polynomial estimators for the regression and also density.  It comprises several different utilities to handle kernel estimators.")
     (license license:gpl2+)))
+
+(define-public r-lpme
+  (package
+    (name "r-lpme")
+    (version "1.1.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "lpme" version))
+        (sha256
+          (base32
+            "0si90nkgl8bqk8yvd2igdsrngiwqh8891072pfpzipifnd0f5448"))))
+    (properties `((upstream-name . "lpme")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-decon" ,r-decon)
+        ("r-flexmix" ,r-flexmix)
+        ("r-locpol" ,r-locpol)
+        ("r-rcpp" ,r-rcpp)
+        ("r-rcpparmadillo" ,r-rcpparmadillo)))
+    (home-page
+      "https://cran.r-project.org/web/packages/lpme")
+    (synopsis
+      "Nonparametric Estimation of Measurement Error Models")
+    (description
+      "Provide nonparametric methods for mean regression model, modal regression and conditional density estimation in the presence/absence of measurement error.  Bandwidth selection is also provided for each method.")
+    (license license:gpl2+)))
-- 
2.28.0





Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Mon, 19 Oct 2020 12:11:01 GMT) Full text and rfc822 format available.

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

From: zimoun <zimon.toutoune <at> gmail.com>
To: Aniket Patil <aniket112.patil <at> gmail.com>
Cc: 44033 <at> debbugs.gnu.org
Subject: Re: [bug#44033] [PATCH 1/3] gnu: Add r-decon.
Date: Mon, 19 Oct 2020 14:09:55 +0200
Dear,

Thank you for this contribution.


The file gnu/packages/cran.scm has changed between so your patches do
not apply anymore.  Could you rebase on the top?  Please.

(Note that using “git format-patch --base=<hash>” where <hash> is the
hash on which your patch is applying simplifies the process.  IMHO.)


On Fri, 16 Oct 2020 at 18:43, Aniket Patil <aniket112.patil <at> gmail.com> wrote:
> * gnu/packages/cran.scm (r-decon): New variable.
> ---
>  gnu/packages/cran.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
> index 59a409f8e9..0370cdd993 100644
> --- a/gnu/packages/cran.scm
> +++ b/gnu/packages/cran.scm
> @@ -24596,3 +24596,26 @@ enrichment analysis (GSEA) calculation with or without the absolute filtering.
>    Without filtering, users can perform (original) two-tailed or one-tailed
>  absolute GSEA.")
>      (license license:gpl2)))
> +
> +(define-public r-decon
> +  (package
> +    (name "r-decon")
> +    (version "1.2-4")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (cran-uri "decon" version))
> +        (sha256
> +          (base32
> +            "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))

The indentation does not seem correct.  It should be:

        (sha256
         (base32
          "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))

> +    (properties `((upstream-name . "decon")))
> +    (build-system r-build-system)
> +    (native-inputs `(("gfortran" ,gfortran)))

Usually, we use:

    (native-inputs
     `(("gfortran" ,gfortran)))

instead on the in-line.

> +    (home-page
> +      "https://cran.r-project.org/web/packages/decon")
> +    (synopsis
> +      "Deconvolution Estimation in Measurement Error Models")

Usually, the synopsis is on the same line:

    (synopsis "Deconvolution Estimation in Measurement Error Models")


> +    (description
> +      "This package contains a collection of functions to deal with nonparametric measurement error problems using deconvolution kernel methods.  We focus two measurement error models in the package: (1) an additive measurement error model, where the goal is to estimate the density or distribution function from contaminated data; (2) nonparametric regression model with errors-in-variables.  The R functions allow the measurement errors to be either homoscedastic or heteroscedastic.  To make the deconvolution estimators computationally more efficient in R, we adapt the \"Fast Fourier Transform\" (FFT) algorithm for density estimation with error-free data to the deconvolution kernel estimation.  Several methods for the selection of the data-driven smoothing parameter are also provided in the package.  See details in: Wang, X.F.  and Wang, B. (2011).  Deconvolution estimation in measurement error models: The R package decon.  Journal of Statistical Software, 39(10), 1-24.")
> +    (license license:gpl3+)))
> +

The lines should not be longer than 80 characters.  Something like.

    (description
     "This package contains a collection of functions to deal with
     nonparametric measurement error problems using deconvolution
     kernel methods.  We focus two measurement error models in the
     package: (1) an additive measurement error model, where the goal
     is to estimate the density or distribution function from
     contaminated data; (2) nonparametric regression model with
     errors-in-variables.  The R functions allow the measurement errors
     to be either homoscedastic or heteroscedastic.  To make the
     deconvolution estimators computationally more efficient in R, we
     adapt the \"Fast Fourier Transform\" (FFT) algorithm for density
     estimation with error-free data to the deconvolution kernel
     estimation.  Several methods for the selection of the data-driven
     smoothing parameter are also provided in the package.  See details
     in: Wang, X.F.  and Wang, B. (2011).  Deconvolution estimation in
     measurement error models: The R package decon.  Journal of
     Statistical Software, 39(10), 1-24.")


To help you to spot, you can apply the linter with:

  ./pre-inst-env guix lint r-deconv

and then address the warnings, if any.


Could you send a v2?

All the best,
simon




Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Mon, 19 Oct 2020 12:43:02 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: zimoun <zimon.toutoune <at> gmail.com>
Cc: 44033 <at> debbugs.gnu.org
Subject: Re: [bug#44033] [PATCH 1/3] gnu: Add r-decon.
Date: Mon, 19 Oct 2020 17:57:52 +0530
[Message part 1 (text/plain, inline)]
Sure, I will do that.

On Mon, 19 Oct 2020 at 5:40 PM, zimoun <zimon.toutoune <at> gmail.com> wrote:

> Dear,
>
> Thank you for this contribution.
>
>
> The file gnu/packages/cran.scm has changed between so your patches do
> not apply anymore.  Could you rebase on the top?  Please.
>
> (Note that using “git format-patch --base=<hash>” where <hash> is the
> hash on which your patch is applying simplifies the process.  IMHO.)
>
>
> On Fri, 16 Oct 2020 at 18:43, Aniket Patil <aniket112.patil <at> gmail.com>
> wrote:
> > * gnu/packages/cran.scm (r-decon): New variable.
> > ---
> >  gnu/packages/cran.scm | 23 +++++++++++++++++++++++
> >  1 file changed, 23 insertions(+)
> >
> > diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
> > index 59a409f8e9..0370cdd993 100644
> > --- a/gnu/packages/cran.scm
> > +++ b/gnu/packages/cran.scm
> > @@ -24596,3 +24596,26 @@ enrichment analysis (GSEA) calculation with or
> without the absolute filtering.
> >    Without filtering, users can perform (original) two-tailed or
> one-tailed
> >  absolute GSEA.")
> >      (license license:gpl2)))
> > +
> > +(define-public r-decon
> > +  (package
> > +    (name "r-decon")
> > +    (version "1.2-4")
> > +    (source
> > +      (origin
> > +        (method url-fetch)
> > +        (uri (cran-uri "decon" version))
> > +        (sha256
> > +          (base32
> > +            "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
>
> The indentation does not seem correct.  It should be:
>
>         (sha256
>          (base32
>           "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
>
> > +    (properties `((upstream-name . "decon")))
> > +    (build-system r-build-system)
> > +    (native-inputs `(("gfortran" ,gfortran)))
>
> Usually, we use:
>
>     (native-inputs
>      `(("gfortran" ,gfortran)))
>
> instead on the in-line.
>
> > +    (home-page
> > +      "https://cran.r-project.org/web/packages/decon")
> > +    (synopsis
> > +      "Deconvolution Estimation in Measurement Error Models")
>
> Usually, the synopsis is on the same line:
>
>     (synopsis "Deconvolution Estimation in Measurement Error Models")
>
>
> > +    (description
> > +      "This package contains a collection of functions to deal with
> nonparametric measurement error problems using deconvolution kernel
> methods.  We focus two measurement error models in the package: (1) an
> additive measurement error model, where the goal is to estimate the density
> or distribution function from contaminated data; (2) nonparametric
> regression model with errors-in-variables.  The R functions allow the
> measurement errors to be either homoscedastic or heteroscedastic.  To make
> the deconvolution estimators computationally more efficient in R, we adapt
> the \"Fast Fourier Transform\" (FFT) algorithm for density estimation with
> error-free data to the deconvolution kernel estimation.  Several methods
> for the selection of the data-driven smoothing parameter are also provided
> in the package.  See details in: Wang, X.F.  and Wang, B. (2011).
> Deconvolution estimation in measurement error models: The R package decon.
> Journal of Statistical Software, 39(10), 1-24.")
> > +    (license license:gpl3+)))
> > +
>
> The lines should not be longer than 80 characters.  Something like.
>
>     (description
>      "This package contains a collection of functions to deal with
>      nonparametric measurement error problems using deconvolution
>      kernel methods.  We focus two measurement error models in the
>      package: (1) an additive measurement error model, where the goal
>      is to estimate the density or distribution function from
>      contaminated data; (2) nonparametric regression model with
>      errors-in-variables.  The R functions allow the measurement errors
>      to be either homoscedastic or heteroscedastic.  To make the
>      deconvolution estimators computationally more efficient in R, we
>      adapt the \"Fast Fourier Transform\" (FFT) algorithm for density
>      estimation with error-free data to the deconvolution kernel
>      estimation.  Several methods for the selection of the data-driven
>      smoothing parameter are also provided in the package.  See details
>      in: Wang, X.F.  and Wang, B. (2011).  Deconvolution estimation in
>      measurement error models: The R package decon.  Journal of
>      Statistical Software, 39(10), 1-24.")
>
>
> To help you to spot, you can apply the linter with:
>
>   ./pre-inst-env guix lint r-deconv
>
> and then address the warnings, if any.
>
>
> Could you send a v2?
>
> All the best,
> simon
>
[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Thu, 22 Oct 2020 08:00:02 GMT) Full text and rfc822 format available.

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

From: zimoun <zimon.toutoune <at> gmail.com>
To: Aniket Patil <aniket112.patil <at> gmail.com>, 44033 <at> debbugs.gnu.org
Subject: Re: [bug#44033] [PATCH 1/3] gnu: Add r-decon.
Date: Thu, 22 Oct 2020 09:59:28 +0200
Hi,

Please keep CC 44033 <at> debbugs.gnu.org. :-)

On Thu, 22 Oct 2020 at 08:22, Aniket Patil <aniket112.patil <at> gmail.com> wrote:

> Also what do you mean by
> >  The file gnu/packages/cran.scm has changed between so your patches do
> > not apply anymore.  Could you rebase on the top?  Please.
> Do you mean that those packages are included? Or do you mean the packages aren't indented correctly?

I mean that the file gnu/packages/cran.scm has changed (new packages
that are not yours have been added) so the patches you sent do not
apply (which means that "git am" fails).

Your packages are *not* included, yet.  Because they are not compliant
enough with the standard.  The indentation is one the minor tweaks you
have to do.

To summary:

  1. please re-read
<https://lists.gnu.org/archive/html/help-guix/2020-10/msg00047.html>
and you can experiment with <https://git-send-email.io/#step-4> (see
the other steps too) and train with for example
<https://git-rebase.io/>.
  2. do the changes (git rebase -i)
  3. rebase your branch (if any) on the top of master
  4. git format-patch -v2 --base=<last-master-commit-before-your-changes>
  5. git send-email --to=44033 <at> debbugs.gnu.org ...

Does it make sense?  If you are failing, do not hesitate to ask help
on #guix over IRC.


All the best,
simon




Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Wed, 28 Oct 2020 15:04:03 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: 44033 <at> debbugs.gnu.org, aniket112.patil <at> gmail.com
Subject: [PATCH v2 1/3] gnu: Add r-decon.
Date: Wed, 28 Oct 2020 13:21:37 +0530
* gnu/packages/cran.scm (r-decon): New variable.
---
 gnu/packages/cran.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index fea560f7a1..ce2d860135 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24628,3 +24628,39 @@ orthogonal coordinate systems: cartesian, polar, spherical, cylindrical,
 parabolic or user defined by custom scale factors.")
     (license license:gpl3)))
 
+(define-public r-decon
+  (package
+    (name "r-decon")
+    (version "1.2-4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "decon" version))
+        (sha256
+          (base32
+            "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
+    (properties `((upstream-name . "decon")))
+    (build-system r-build-system)
+    (native-inputs
+     `(("gfortran" ,gfortran)))
+    (home-page
+      "https://cran.r-project.org/web/packages/decon")
+    (synopsis "Deconvolution Estimation in Measurement Error Models")
+    (description
+      "This package contains a collection of functions to deal with 
+nonparametric measurement error problems using deconvolution 
+kernel methods.  We focus two measurement error models in the 
+package: (1) an additive measurement error model, where the 
+goal is to estimate the density or distribution function from 
+contaminated data; (2) nonparametric regression model with 
+errors-in-variables.  The R functions allow the measurement errors 
+to be either homoscedastic or heteroscedastic.  To make the 
+deconvolution estimators computationally more efficient in R, 
+we adapt the \"Fast Fourier Transform\" (FFT) algorithm for 
+density estimation with error-free data to the deconvolution 
+kernel estimation.  Several methods for the selection of the 
+data-driven smoothing parameter are also provided in the package.  
+See details in: Wang, X.F.  and Wang, B. (2011).  Deconvolution 
+estimation in measurement error models: The R package decon.  
+Journal of Statistical Software, 39(10), 1-24.")
+    (license license:gpl3+)))
-- 
2.28.0





Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Wed, 28 Oct 2020 15:04:04 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: 44033 <at> debbugs.gnu.org, aniket112.patil <at> gmail.com
Subject: [PATCH v2 2/3] gnu: Add r-locpol.
Date: Wed, 28 Oct 2020 13:21:38 +0530
* gnu/packages/cran.scm (r-locpol): New variable.
---
 gnu/packages/cran.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ce2d860135..20ebb06c67 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24664,3 +24664,25 @@ See details in: Wang, X.F.  and Wang, B. (2011).  Deconvolution
 estimation in measurement error models: The R package decon.  
 Journal of Statistical Software, 39(10), 1-24.")
     (license license:gpl3+)))
+
+(define-public r-locpol
+  (package
+    (name "r-locpol")
+    (version "0.7-0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "locpol" version))
+        (sha256
+          (base32
+            "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
+    (properties `((upstream-name . "locpol")))
+    (build-system r-build-system)
+    (home-page
+      "https://cran.r-project.org/web/packages/locpol")
+    (synopsis "Kernel Local Polynomial Regression")
+    (description
+      "Computes local polynomial estimators for the regression and 
+also density.  It comprises several different utilities to handle 
+kernel estimators.")
+    (license license:gpl2+)))
-- 
2.28.0





Information forwarded to guix-patches <at> gnu.org:
bug#44033; Package guix-patches. (Wed, 28 Oct 2020 15:04:04 GMT) Full text and rfc822 format available.

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

From: Aniket Patil <aniket112.patil <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: 44033 <at> debbugs.gnu.org, aniket112.patil <at> gmail.com
Subject: [PATCH v2 3/3] gnu: Add r-lpme.
Date: Wed, 28 Oct 2020 13:21:39 +0530
* gnu/packages/cran.scm (r-lpme): 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 20ebb06c67..82caaf54f6 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24686,3 +24686,32 @@ Journal of Statistical Software, 39(10), 1-24.")
 also density.  It comprises several different utilities to handle 
 kernel estimators.")
     (license license:gpl2+)))
+
+(define-public r-lpme
+  (package
+    (name "r-lpme")
+    (version "1.1.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "lpme" version))
+        (sha256
+          (base32
+            "0si90nkgl8bqk8yvd2igdsrngiwqh8891072pfpzipifnd0f5448"))))
+    (properties `((upstream-name . "lpme")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-decon" ,r-decon)
+        ("r-flexmix" ,r-flexmix)
+        ("r-locpol" ,r-locpol)
+        ("r-rcpp" ,r-rcpp)
+        ("r-rcpparmadillo" ,r-rcpparmadillo)))
+    (home-page
+      "https://cran.r-project.org/web/packages/lpme")
+    (synopsis "Nonparametric Estimation of Measurement Error Models")
+    (description
+      "Provide nonparametric methods for mean regression model, 
+modal regression and conditional density estimation in the 
+presence/absence of measurement error. Bandwidth selection is 
+also provided for each method.")
+    (license license:gpl2+)))
-- 
2.28.0





Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Tue, 15 Dec 2020 05:40:02 GMT) Full text and rfc822 format available.

Notification sent to Aniket Patil <aniket112.patil <at> gmail.com>:
bug acknowledged by developer. (Tue, 15 Dec 2020 05:40:02 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Aniket Patil <aniket112.patil <at> gmail.com>
Cc: 44033-done <at> debbugs.gnu.org
Subject: Re: [bug#44033] [PATCH v2 3/3] gnu: Add r-lpme.
Date: Tue, 15 Dec 2020 00:39:27 -0500
On Wed, Oct 28, 2020 at 01:21:39PM +0530, Aniket Patil wrote:
> * gnu/packages/cran.scm (r-lpme): New variable.

Thank you for the revised patches!

I fixed another minor linter issue: the home-page URLs redirected
permamently to similar URLs, but with trailing slashes.

Anyways, I pushed the patches as commit
1c6789464a95e98a795be84cc8f1811d411712ce:

https://git.savannah.gnu.org/cgit/guix.git/log/?qt=range&q=795f654b2a0593d2a09273fc7e39d7258c87d548%5E..1c6789464a95e98a795be84cc8f1811d411712ce

Thanks again for the contribution!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 12 Jan 2021 12:24:04 GMT) Full text and rfc822 format available.

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

Previous Next


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