Hello all,
I am trying to run this simple piece of R code which uses the biomaRt
package:
#importing biomaRt library
library(biomaRt)
#delcaring hsap mart
hsap_mart = useEnsembl(biomart = 'genes',
dataset = 'hsapiens_gene_ensembl',
version = 95)
I run this same piece of code for two R versions - 4.3.1 and 4.3.2. The code runs fine for version 4.3.2 but it gives the following error for 4.3.1:
Error in `collect()`:
! Failed to collect lazy table.
Caused by error in `db_collect()`:
! Arguments in `...` must be used.
x Problematic argument:
* ..1 = Inf
i Did you misspell an argument name?
Run `rlang::last_trace()` to see where the error occurred.
Error during wrapup: 'length = 2' in coercion to 'logical(1)'
Error: no more error handlers available (recursive errors?); invoking 'abort' restart
Theoretically, I can just ignore the error and keep using 4.3.2, but just wanted to know what could be causing this error for 4.3.1.
Any ideas?
Tagging: Mike Smith