Re: [Bioc-devel] Interpreting BiocCheck output

2022-10-11 Thread Kern, Lori
Elm & Carlton Streets Buffalo, New York 14263 From: Bioc-devel on behalf of Sergio Oller Sent: Saturday, October 8, 2022 4:38 AM To: bioc-devel@r-project.org Subject: Re: [Bioc-devel] Interpreting BiocCheck output Hi Giulia, hi all I often run BiocCheck::B

Re: [Bioc-devel] Interpreting BiocCheck output

2022-10-10 Thread Sergio Oller
2 > > > mtcars |> select("mpg", "cyl") |> head(3) # `”mpg”` and `”cyl”` are > character vectors, not symbols… > >mpg cyl > > Mazda RX4 21.0 6 > > Mazda RX4 Wag 21.0 6 > > Datsun 71022.8 4 > > > >

Re: [Bioc-devel] Interpreting BiocCheck output

2022-10-07 Thread Henrik Bengtsson
select("mpg", "cyl") |> head(3) # `”mpg”` and `”cyl”` are > > character vectors, not symbols… >mpg cyl > Mazda RX4 21.0 6 > Mazda RX4 Wag 21.0 6 > Datsun 710 22.8 4 > > Martin > > From: Bioc-devel on behalf of Marc

Re: [Bioc-devel] Interpreting BiocCheck output

2022-10-07 Thread Martin Morgan
, not symbols… mpg cyl Mazda RX4 21.0 6 Mazda RX4 Wag 21.0 6 Datsun 71022.8 4 Martin From: Bioc-devel on behalf of Marcel Ramos Date: Friday, October 7, 2022 at 3:07 PM To: bioc-devel@r-project.org Subject: Re: [Bioc-devel] Interpreting BiocCheck output Hi Giul

Re: [Bioc-devel] Interpreting BiocCheck output

2022-10-07 Thread Marcel Ramos
Hi Giulia, Thanks for sharing. I took a look at https://github.com/calabrialab/ISAnalytics and I'm glad you resolved the issue. Just a reminder, you can also use `utils::globalVariables('.')` in your package for functions that use `'.'` (and other symbols) as a variable, e.g. in `purrr::pmap`.

[Bioc-devel] Interpreting BiocCheck output

2022-10-04 Thread Giulia Pais
Hello, I�m having some issues in interpreting BiocCheck outputs, maybe someone can tell me how to fix the issues. I�ve got 2 main issues that cause the check to fail after normal CRAN check has passed: 1. I get this error message * Checking if other packages can import this one... *