I am trying to use the biomart data in my R session.
As biomart at the moment has problems working with RefSeq data I need to use this command:
gene_names <- getBM(attributes = c("affy_drosophila_2","flybasename_gene","flybase_gene_id", "external_gene_id", "ensembl_gene_id", "entrezgene"), filter = c("with_ox_refseq_mrna"), values = nmids, mart = ensembl)
Unfortunately i am getting an error:
Error in getBM(attributes = c("affy_drosophila_2", "flybasename_gene", : biomaRt error: with_ox_refseq_mrna is a boolean filter and needs a corresponding logical value of TRUE or FALSE to indicate if the query should retrieve all data that fulfill the boolean or alternatively that all data that not fulfill the requirement should be retrieved.
Does anyone know how to set this TRUE or FALSE values? I couldn't find anything about it in the manuals or forum.
Thanks
Assa