grimbough / rhdf5

Package providing an interface between HDF5 and R
http://bioconductor.org/packages/rhdf5
61 stars 22 forks source link

Register S3 Methods #25

Closed grimbough closed 5 years ago

grimbough commented 6 years ago

Received via email from Kurt Hornik

Dear Mike,

Your package has one CRAN dependency (io) which fails its checks when S3 methods lookup on the search path is prevented, because it needs

S3 method lookup found 'h5write.default' on search path 

Can you please add the missing S3 method registration

S3method(h5write, default)

to your NAMESPACE? More precisely, you have S3 generics

5write.R: res <- UseMethod("h5write") h5write.R: res <- UseMethod("h5writeDataset") h5writeAttr.R: res <- UseMethod("h5writeAttribute")

Can you please register all S3 methods for these in your NAMESPACE?

Best -k

grimbough commented 6 years ago

Check https://cran.r-project.org/web/checks/check_results_io.html for current status of failing package.