There is now also a wrapper package for the MEME suite (that includes FIMO) in R/Bioconductor: https://bioconductor.org/packages/release/bioc/html/memes.html You could use the HOCOMOCO motif collection, they offer downloads of motifs directly in MEME format.
transcription binding site prediction from fasta sequence
Hi all I have 2 kb long sequence which is promoter region of a gene. From that sequence I would like to pinpoint transcription factor binding sites of smad3. How can I do that and is it possible with JASPAR?
Thanks
• 1,720 views
•
link
1 answer
JASPAR allows exporting motifs in MEME format which you can use along with FIMO from the MEME suite to look for specific motif occurrences in your sequence(s). As opposed to exact string matching it takes into consideration the probability of each base occurring per-position since chromatin binding proteins can be promiscuous with their binding sites.
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.
Hi, you can use python to find all the smad3 binding sites in your query sequence, for example if smad3 binding site is 5'-GTCTAGAC-3' you can use the following dirty python code to get all your sites
hope it helps.