Function identifyTSS

  • Identifies potential transcription start sites (TSS) based on promoter elements.

    Parameters

    • promoter: Promoter

      The promoter to analyze

    • sequence: DNA

      The DNA sequence containing the promoter

    Returns number[]

    Array of potential TSS positions

    Example

    const tssPositions = identifyTSS(promoter, dna);
    console.log(`Potential TSS at positions: ${tssPositions.join(', ')}`);