Function findPromoters

  • Finds potential promoters in a DNA sequence by identifying promoter elements.

    Parameters

    Returns Promoter[]

    Array of potential Promoter objects found in the sequence

    Example

    const dna = new DNA('GGCCAATCTATAATGCATGCCC...');
    const promoters = findPromoters(dna);
    console.log(`Found ${promoters.length} potential promoters`);