From Shock to Competence: How Not to Panic When You Receive E-mail from CRAN about Failed Checks

[This article was first published on Posts on R-hub blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

This post was contributed by Julia Romanowska, Researcher at the University of Bergen, Norway. Thank you, Julia!

I’m involved in development of the Haplin R package, which enables fast genetic association analyses (very useful for those involved in genetic epidemiology research). We are a team of scientists that have various background, from genetics, through bioinformatics and statistics. Here’s a short text about our latest “adventure” with CRAN and how it taught us some useful stuff.

OMG, CRAN wrote to me!

There will come the time when you check your mailbox and see this dreaded message about a check that your beloved CRAN package failed. Even though the deadline for submitting a fix is quite reasonable, you might imagine yourself sitting long into the night over your laptop just to find out where is this one comma that was the source of the error. However, I need to say we were positively surprised over the level of details of feedback we got from CRAN concerning the error in our package.

In our case, the error was related to the changes that will be introduced in the next R version and that include throwing an error when the if statement resolves to a vector of values instead of one boolean value. In our code, we used to test for specific type of input data using class( obj ) == "myClass". This is sometimes resolved to a vector, which thus leads to an error in the r-devel CRAN tests. This blog post explains it in more details.

Thus, important ✨ tip #1 ✨ read the e-mail from CRAN carefully!

Reproducing the error

OK, let’s get to work! Firstly, check the “checks” webpage on CRAN. These CRAN checks come in different flavors and hopefully, not all checks failed. In our case, the flavor that produced the error was r-devel-linux-x86_64-debian-clang and I had no wish to install the developmental version of R and other packages on my local laptop just to try mimicking this setup. That’s when I thought about checking Docker.

Installing Docker and running a test went well, but what one needs is a VM that would be exactly the same as the platforms CRAN uses for testing. I realized that it would take too much time to re-create it, so again my DuckDuckGo search engine1 came to the rescue.

✨ Tip #2 ✨ search the net!

R and Docker

There are two services that are worth mentioning:

If you are a maintainer of an R package and don’t want to install Docker locally, you will find the rhub package very useful, as you can push your package to the server for testing with one command! Check out e.g., the package docs.

If you want to test more locally, and importantly, if you want to test visualizations, GUI, or specific behavior of the code in RStudio, you should take a look at the Rocker project. They provide easy-to-run Docker images with pre-installed R and RStudio, which you can play with through a browser window.

R-hub locally

In my case, I wanted to test locally, so I decided to use one of the rhub functions, local_check_linux(). This seemed like a very easy way to run locally tests on a platform that is exactly the same as CRAN uses! And it is… only not in my case ????

After getting the same error for the nth time, I decided to get help at the source. I tried several things, including digging into the rhub code locally, but nothing worked. Long story short – my Docker installation by default gave no access to internet to the containers it launched.

✨ Tip #3 ✨ ask for help other people! (they don’t bite, especially not via e-mails)

Script for semi-manual checks

Another couple of days and I talked with my husband, who showed me a script he used in one of his projects. The script uses a local Docker installation, fetches one of the images hosted by R-hub, and runs tests locally. Bingo! As this was the second time I tried using Docker, I needed some attempts to adjust the script to my purposes, but it finally worked!

Conclusion

Since I could now reproduce the exact error and I knew roughly which parts of the code caused it, I fixed the problems relatively fast. The main issue, as mentioned above, was with the identification of a class of the objects, which I’ve re-written now to is( obj, "myClass") instead, which is also a recommended way of checking class membership.

Thanks to rhub and other tools available online, it’s relatively easy to test a CRAN package – just remember not to panic and read the check reports thoroughly.

Post scriptum

While writing this post, I’ve come upon another R package dockr, which helps creating a Docker container with the package one wants to test already available within the container. I haven’t tried it yet, but it seems very promising!

Find Julia on GitHub, Bitbucket, or Facebook


  1. I repeatedly refuse to use Google to protect my privacy [return]

To leave a comment for the author, please follow the link and comment on their blog: Posts on R-hub blog.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)