ctmm-initiative / ctmmweb

Web app for analyzing animal tracking data, built upon ctmm R package
http://biology.umd.edu/movement.html
GNU General Public License v3.0
32 stars 21 forks source link

CRAN submission #114

Open xhdong-umd opened 4 years ago

xhdong-umd commented 4 years ago

I did a R CMD Check, the list is quite long, include numerous small but cumbersome details. This could be a very time consuming process. I may also need to run check on 3 platforms: windows, mac, and linux.

I think this is an important direction but it will take time. I'll check on this when I got time and no other higher priority tasks on hand.

chfleming commented 4 years ago

CRAN check is very tedious. Fortunately, though, there is very little variation between platforms. Most of the effort is the upfront cost, and then there are small changes with every development release of R. If you run into anything that stumps you, please let me know.

xhdong-umd commented 4 years ago

I went through them and tried to fix most of them. There are two issues still remained:

chfleming commented 4 years ago

That warning is really for packages that aren't maintained by the same group. I would try something like this:

FN <- c("assign_speeds","distanceMLE","get.error","is.calibrated","unit","variogram.fit.backend")
for(fn in FN) { assign(fn,eval(parse(text=paste0("ctmm:::",fn)))) }