griffithlab / GenVisR

Genome data visualizations
Creative Commons Zero v1.0 Universal
206 stars 62 forks source link

network? #372

Closed windforclouds closed 3 years ago

windforclouds commented 3 years ago

lolliplot(data) Using the following host: www.ensembl.org for biomaRt queries to change the ensembl annotation version alter this parameter! Querying biomaRt for transcript sequence NULL Error in .processResults(postRes, mart = mart, sep = sep, fullXmlQuery = fullXmlQuery, : The query to the BioMart webservice returned an invalid result. The number of columns in the result table does not equal the number of attributes in the query. Please report this on the support site at http://support.bioconductor.org

windforclouds commented 3 years ago

I used the sample data

zlskidmore commented 3 years ago

Thanks for the report @windforclouds

It looks like this is mostly due to changes in ensembl/biomart

https://support.bioconductor.org/p/134524/

also had to make a couple minor changes in my code

To fix you'll need to install the development version of biomaRt and the devel version of genvisr either from this repo or the bioconductor devel site.

BiocManager::install('grimbough/biomaRt') devtools:install_github('griffithlab/GenVisR')

should work, make sure you restart R after this. I tested and it works on my end with the example data. I'll wait for your confirmation to close this issue

windforclouds commented 3 years ago

Thanks, my problem is solved