diff --git a/dev/faq/index.html b/dev/faq/index.html index bf357b8..f5a9452 100644 --- a/dev/faq/index.html +++ b/dev/faq/index.html @@ -34,4 +34,4 @@ julia> typeof(genome_allnodes) TopologicalGenome
In case where all clusterings lead to the same genome, it can simply be accessed by calling first(topo)
.
Having obtained a TopologicalGenome
, the topological genome itself can accessed by converting it to a PeriodicGraph
:
julia> genome = PeriodicGraph(genome_allnodes)
PeriodicGraph3D(6, PeriodicEdge3D[(1, 2, (0,0,0)), (1, 3, (0,0,0)), (1, 4, (0,0,0)), (1, 4, (0,0,1)), (1, 5, (0,0,0)), (1, 6, (0,0,0)), (2, 4, (0,0,1)), (2, 6, (-1,0,0)), (3, 4, (0,0,1)), (3, 5, (0,-1,0)), (4, 5, (0,0,0)), (4, 6, (0,0,0))])
In case of error during topology identification, the returned genome
is a PeriodicGraph{0}
.
The string representation of the genome is simply string(genome)
:
julia> string(genome)
-"3 1 2 0 0 0 1 3 0 0 0 1 4 0 0 0 1 4 0 0 1 1 5 0 0 0 1 6 0 0 0 2 4 0 0 1 2 6 -1 0 0 3 4 0 0 1 3 5 0 -1 0 4 5 0 0 0 4 6 0 0 0"
Settings
This document was generated with Documenter.jl version 0.27.25 on Monday 13 May 2024. Using Julia version 1.10.3.