Skip to content

TargetAttribute

Mojo struct 🡭

@memory_only
struct TargetAttribute

Structured form of a GFF3 Target attribute value.

Format: target_id start end [strand] Coordinates are 1-based. strand is optional (+/-).

  • target_id (BString)
  • start (UInt64)
  • end (UInt64)
  • strand (Optional[Gff3Strand])

AnyType, Copyable, ImplicitlyDestructible, Movable

def __init__(out self, var target_id: BString, start: UInt64, end: UInt64, strand: Optional[Gff3Strand])

Args:

  • target_id (BString)
  • start (UInt64)
  • end (UInt64)
  • strand (Optional)
  • self (Self)

Returns:

Self

def __init__(out self, *, copy: Self)

Args:

  • copy (Self)
  • self (Self)

Returns:

Self