I developed a C++ program using boost-graph which stores the output as graphml files.
This uses the compiled part of the boost graph library.
I wanted to include this code in an R package using Rcpp, so I used BH, however the graphml writer is not included in BH. I add that I want to include some easy plotting functionality. The possible solution that I came up with are :
- Write a graphml writer, and interface it with the graph package on bioconductor for plotting.
- Write an interface with igraph (no parser to write)
- Any other solution ?
I think that I will use the second option for commodity purpose, however I wanted to know if somebody encountered this issue/had an input on this question ?
I want to submit this package to bioconductor.
Thanks, Alexis