MoinMoin GraphViz parser from MoinMoin:ParserMarket/dot.py GraphViz 에서 [[Graph]]를 그리는 방법은 다섯가지(dot, neato, fdp, twopi, circo)가 있다. 아래 소스를 각각의 방법으로 그려보면, {{{ digraph G { node [style=filled, fillcolor=white] yong27 -> cyppi -> neosphere -> yong27 neosphere -> bio -> cyppi aaa -> neosphere azzzz -> aaa kkk -> azzzz yong27 -> kkk // a comment / yong27 [URL='yong27'] // link to an external URL cyppi [URL='cyppi'] neosphere [URL='neosphere'] yong27 [fillcolor=blue] } }}} == dot == {{{#!dot digraph G { node [style=filled, fillcolor=white] yong27 -> cyppi -> neosphere -> yong27 neosphere -> bio -> cyppi aaa -> neosphere azzzz -> aaa kkk -> azzzz -> 한글입력 // a comment yong27 [URL='yong27'] // link to an external URL cyppi [URL='cyppi'] neosphere [URL='neosphere'] yong27 [fillcolor=blue] } }}} == neato == {{{#!neato digraph G { node [style=filled, fillcolor=white] yong27 -> cyppi -> neosphere -> yong27 neosphere -> bio -> cyppi aaa -> neosphere azzzz -> aaa kkk -> azzzz yong27 -> kkk // a comment / yong27 [URL='yong27'] // link to an external URL cyppi [URL='cyppi'] neosphere [URL='neosphere'] yong27 [fillcolor=blue] } }}} == twopi == {{{#!twopi digraph G { node [style=filled, fillcolor=white] yong27 -> cyppi -> neosphere -> yong27 neosphere -> bio -> cyppi aaa -> neosphere azzzz -> aaa kkk -> azzzz yong27 -> kkk // a comment // yong27 [URL='yong27'] // link to an external URL cyppi [URL='cyppi'] neosphere [URL='neosphere'] yong27 [fillcolor=blue] } }}} == fdp == {{{#!fdp digraph G { node [style=filled, fillcolor=white] yong27 -> cyppi -> neosphere -> yong27 neosphere -> bio -> cyppi aaa -> neosphere azzzz -> aaa kkk -> azzzz yong27 -> kkk // a comment /// yong27 [URL='yong27'] // link to an external URL cyppi [URL='cyppi'] neosphere [URL='neosphere'] yong27 [fillcolor=blue] } }}} == circo == {{{#!circo digraph G { node [style=filled, fillcolor=white] yong27 -> cyppi -> neosphere -> yong27 neosphere -> bio -> cyppi aaa -> neosphere azzzz -> aaa kkk -> azzzz yong27 -> kkk // a comment //// yong27 [URL='yong27'] // link to an external URL cyppi [URL='cyppi'] neosphere [URL='neosphere'] yong27 [fillcolor=blue] } }}} == test == {{{#!fdp digraph G { node [style=filled, fillcolor=white] ChemicalGroup -> Chemical DiseaseGroup -> Chemical Chemical -> ToxicoExperiment -> ConfirmExperiment Organism -> ToxicoExperiment Experiment -> ToxicoExperiment ToxicoExperiment -> DEG Feature -> DEG Chemical -> CtdChemicalGene Gene -> CtdChemicalGene Organism -> CtdChemicalGene Chemical -> CtdChemicalDisease Disease -> CtdChemicalDisease Gene -> CtdGeneDisease Disease -> CtdGeneDisease Chemical -> CtdChemicalPathway Pathway -> CtdChemicalPathway Disease -> CtdDiseasePathway Pathway -> CtdDiseasePathway Gene -> CtdGenePathway Pathway -> CtdGenePathway User -> ToxicoExperiment User -> ConfirmExperiment Feature -> Gene User [URL=''] Experiment [URL=''] Feature [URL=''] Organism [URL=''] Gene [URL=''] User [fillcolor=blue] Experiment [fillcolor=yellow] Feature [fillcolor=yellow] Organism [fillcolor=yellow] Gene [fillcolor=yellow] } }}}