Re: [Seqan-dev] Graph visualization


Hi Mat,

 

you can write the graph to a dot-file and then open the file with graphviz:

 

FILE* strmWrite = fopen("graph.dot", "w");

write(strmWrite, g, DotDrawing());

fclose(strmWrite);

 

Other formats are not supported so far.

 

Cheers,

Birte

 

 

From: Mat [mailto:matthias.dodt@mdc-berlin.de]
Sent: Dienstag, 16. November 2010 15:42
To: seqan-dev@lists.fu-berlin.de
Subject: [Seqan-dev] Graph visualization

 

Hey Guys!

I am experimenting with different Graphs in seqan. I would like to visualize the results on my graph in an easy way (like exporting the graph in a graph-file format or use some standardized way). Is there something built in with seqan? So far i only discovered "graphviz"...

Thanks for any advice!

Best,

mat