Hello Everyone
I am building a package for data visualization. It basically just take a data frame and plot genes based on dominance features across variables (Proteins, Tissues, etc). Nevertheless, I am do not require any Bioconductor package for this given that most of the functions are being built with base R and dplyr. Is this a problem by the time I submit the package? It doesn't mean the package can't work with data or structures from other packages.
That being said, if I use an example using packages like summarizedexperiment, can I overcome that limitation for the package to be in Bioconductor?
Any advice would be appreciated!
Thank you.
Using an example with SummarizedExperiment would satisfy the requirement; however the package should take the object directly and not just subset the SummarizedExperiment and pipe that into the functions. It is fine to allow use with data frames and simple structures but it should also be compatible with common Bioconductor classes if they exist.
Thank you so much for your answer, very useful!