kkang7 / CDSeq_R_Package

CDSeq R Package
17 stars 10 forks source link

don't import RcppThread namespace #13

Closed tnagler closed 8 months ago

tnagler commented 3 years ago

Problem

The next version of RcppThread will export an R-function RcppThread::detectCores() which clashes with your import of parallel::detectCores(). This would generate a warning when building/checking the package.

Fix

Removed RcppThread from Imports: filed in DESCRIPTION and don't import it in NAMESPACE. RcppThread is still listed in LinkingTo which is sufficient for all C++ functionality.