Maping TFBS in a sequence
I needed to test some sequence for known TFBS, I was looking for: (1) a public database of TFBS and (2) a program to search the motifs in a sequence(s). First I found Jaspar as an alternative to the commercial TransFac DB , I downloaded the matrices for vertebrate. The second problem was to find a program to search the motifs in any sequence, I did not find any updated program (many are published, but few websites are active nowadays). So, I decided to write my own program, I share the code if anyone can use it: #!/usr/bin/perl -w use strict; use Getopt::Long; =head1 NAME jasparScan.pl =head1 USAGE jasparScan.pl -f FASTA -m MATRIX [-s MODELS] [-c CUT_OFF] OPTIONS: -h --help Help screen -f --fasta Fasta file to scan -m --matrix Jaspar motif matrix -s --models List of models, separated by ':' [Def: all] -c --cutoff Similarity cut-off [Def: 0.90] =head1 DESCRIPTION Script to map a TF binding site matrix (from Jaspar DB) into a fasta sequence. The simila...