Closed llrs closed 3 months ago
A package maintainer is facing a problem in the submission of the package to Bioconductor. I think this is due to a bug in BiocCheck.
There is a check if there is any condition met but then it is assumed there is only one (seq(...))
seq(...)
https://github.com/Bioconductor/BiocCheck/blob/222e4693a947673ef16d9e6982e7f1c14e2c705f/R/findSymbols.R#L11-L12
cond is defined above as a vector, so multiple conditions can happen: https://github.com/Bioconductor/BiocCheck/blob/222e4693a947673ef16d9e6982e7f1c14e2c705f/R/findSymbols.R#L4
cond
I don't understand fully the problem so I am not sure what is the best solution to fix this.
This has been resolved in the latest version of BiocCheck: 48130c9 v1.41.9 Best, Marcel
BiocCheck
A package maintainer is facing a problem in the submission of the package to Bioconductor. I think this is due to a bug in BiocCheck.
There is a check if there is any condition met but then it is assumed there is only one (
seq(...)
)https://github.com/Bioconductor/BiocCheck/blob/222e4693a947673ef16d9e6982e7f1c14e2c705f/R/findSymbols.R#L11-L12
cond
is defined above as a vector, so multiple conditions can happen: https://github.com/Bioconductor/BiocCheck/blob/222e4693a947673ef16d9e6982e7f1c14e2c705f/R/findSymbols.R#L4I don't understand fully the problem so I am not sure what is the best solution to fix this.