Interface AlternativeSplicingProfile

Defines the complete alternative splicing profile for a gene, including all possible variants and the default canonical form.

interface AlternativeSplicingProfile {
    defaultVariant: string;
    geneId: string;
    variants: readonly SpliceVariant[];
}

Properties

defaultVariant: string

Name of the variant considered the "canonical" or default form

geneId: string

Gene identifier that this splicing profile applies to

variants: readonly SpliceVariant[]

All available splice variants for this gene