PanGraph globals

Types

PanGraph.AlignmentType
mutable struct Alignment{T <: Union{String,Nothing,Array{Tuple{Int,Char}}}}
	qry::Hit
	ref::Hit
	matches::Int
	length::Int
	quality::Int
	orientation::Bool
	cigar::T
	divergence::Union{Float64,Nothing}
	align::Union{Float64,Nothing}
end

Alignment is a pairwise homologous alignment between two sequences.

source
PanGraph.HitType
mutable struct Hit
	name::String
	length::Int
	start::Int
	stop::Int
	seq::Maybe{Array{UInt8,1}}
end

Hit is one side of a pairwise alignment between homologous sequences.

source

Functions