(cross-posted on so)
I have CEL files for an experiment stored in a MySQL database. I'd like my R script to directly load them from there in order to perform my analysis.
There is a MySQL connector in R. BLOBs are said not to be supported, but I don't know how old the sources are.
Now, is there a way / what is the simplest method to get this working?
I know that I can write a helper Script in e.g. Perl to fetch the files, and then let R do the work once they are retrieved, but it would be nice to have it in one step.
Just curious as to why the CEL files are in MySQL? Normally, I would store them on disk in a directory; I might use MySQL to store the file path. Is there some advantage to in-database storage?
It's a part of a framework that already stores other binary data in the database and has methods to store and retrieve those. It would be easier to just add a .cel file type than to implement directory-based storage at this point.