The DNA sequence to search
Configuration options for the search
Array of potential Promoter objects found in the sequence
const dna = new DNA('GGCCAATCTATAATGCATGCCC...');
const promoters = findPromoters(dna);
console.log(`Found ${promoters.length} potential promoters`);
Finds potential promoters in a DNA sequence by identifying promoter elements.