[Bioc-devel] d3heatmap dependency error

2020-07-11 Thread S Manimaran
Hi, I have a package that depends on d3heatmap. Apparently d3heatmap is no longer maintained and removed from CRAN repository. Now, I am getting the following error when installing my package. ERROR: dependency 'd3heatmap' is not available

Re: [R-pkg-devel] Getting two independent packages with identical S3 generics to dispatch each other's methods

2020-07-11 Thread Duncan Murdoch
On 11/07/2020 7:52 a.m., Pavel N. Krivitsky wrote: Dear Duncan et al., Firstly, my apologies for the duplicated query. It seems that I had searched everywhere but the mailing list where I asked the question. Secondly, I was wondering if I could get some indication whether CRAN would accept a

Re: [R-pkg-devel] Getting two independent packages with identical S3 generics to dispatch each other's methods

2020-07-11 Thread Pavel N. Krivitsky
Dear Duncan et al., Firstly, my apologies for the duplicated query. It seems that I had searched everywhere but the mailing list where I asked the question. Secondly, I was wondering if I could get some indication whether CRAN would accept a package with the following code and documentation (and

Re: [R-pkg-devel] Getting two independent packages with identical S3 generics to dispatch each other's methods

2020-07-11 Thread Duncan Murdoch
If the semantics of the two generics must remain identical in the future, then there is an implicit dependency between the code in the packages. You should formalize this by using one of the dependency mechanisms that the language provides, i.e. the clean solution. Duncan Murdoch On

Re: [Rd] Compilation error for R 4.0.2

2020-07-11 Thread Prof Brian Ripley
On 11/07/2020 11:47, Kurt Hornik wrote: Wim R Cardoen writes: Hello, I experienced a compiler error when I tried to compile the latest version of R i.e. R4.0.2 making iosupport.d from iosupport.c making lapack.d from lapack.c making list.d from list.c making localecharset.d from

Re: [Rd] Compilation error for R 4.0.2

2020-07-11 Thread Kurt Hornik
> Wim R Cardoen writes: > Hello, > I experienced a compiler error when I tried to compile the latest version > of R i.e. R4.0.2 > making iosupport.d from iosupport.c > making lapack.d from lapack.c > making list.d from list.c > making localecharset.d from localecharset.c > grep.c(74):

Re: [R-pkg-devel] Getting two independent packages with identical S3 generics to dispatch each other's methods

2020-07-11 Thread Wolfgang Viechtbauer
Hi Pavel, I asked essentially the same question a few weeks ago: https://stat.ethz.ch/pipermail/r-package-devel/2020q2/005609.html As Jeff already suggested, there is the generics package which might be of use. Aside from this, I wasn't able to distill a workable solution from the discussion