Documentation ¶
Overview ¶
Package liftover provides utilities for lifting genomic coordinates from one reference genome to another, a process known as "lifting over". It leverages a database to store and retrieve the necessary chain and alignment information.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ChainSource ¶
type ChainSource interface { // GetChain returns the chain for the given chromosome and position. GetChain(ctx context.Context, from types.Reference, chromosome types.Chromosome, position int64) (*types.Chain, error) // GetAlignment returns the alignment for the given chain and offset from the // start of the chain. GetAlignment(ctx context.Context, chainID int64, offset int64) (*types.Alignment, error) }
ChainSource is a source of chain and alignment information.
Click to show internal directories.
Click to hide internal directories.