From e0d3ee120b01e5191556c32927d09d042274de1d Mon Sep 17 00:00:00 2001 From: Hugo Gruson Date: Tue, 14 Jul 2026 15:21:57 +0200 Subject: [PATCH] Fix dropbox icon --- r-code.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r-code.Rmd b/r-code.Rmd index ff6f180..d556506 100644 --- a/r-code.Rmd +++ b/r-code.Rmd @@ -299,7 +299,7 @@ checks. * Do not use `browser()` in any internal code. * Avoid the use of `<<-`. * Avoid use of direct slot access with `@` or `slot()`. Accessor methods should be created and utilized -* Use the packages `r BiocStyle::Biocpkg("ExperimentHub")` and `r BiocStyle::Biocpkg("AnnotationHub")` instead of downloading external data from unsanctioned providers such as GitHub, Dropbox, etc. In general, data utlilized in packages should be downloaded from trusted public databases. See also section on web querying and file caching. +* Use the packages `r BiocStyle::Biocpkg("ExperimentHub")` and `r BiocStyle::Biocpkg("AnnotationHub")` instead of downloading external data from unsanctioned providers such as GitHub, Dropbox, etc. In general, data utlilized in packages should be downloaded from trusted public databases. See also section on web querying and file caching. * Use `<-` instead of `=` for assigning variables except in function arguments. ### Cyclomatic Complexity