from coordinate to motif
2
0
Entering edit mode
5.7 years ago
Shuang He • 0

Hi, Does anyone know if there exists such a database who can return the possible motifs when I input the coordinate(chr,start,end)?

Thank you in advance!

motif TFBS • 1.3k views
ADD COMMENT
0
Entering edit mode

There are several, that perform motif analysis. on genomic regions

HOMER MEME ChIPSeek

ADD REPLY
1
Entering edit mode
5.6 years ago
ATpoint 81k

For individual motifs, I prefer fimo from the MEME suite. It accepts fasta format. Bedtools getfasta can convert coordinates to fasta. Motif PFMs can be downloaded from JASPAR.

ADD COMMENT
0
Entering edit mode
4.9 years ago

You could make your own database with FIMO and query it as needed:

https://bioinformatics.stackexchange.com/questions/2467/where-to-download-jaspar-tfbs-motif-bed-file/2491#2491

Once you have such a resource, it is easy to query on an ad-hoc basis:

$ echo -e "chrN\t1234\t5678" | bedmap --echo --echo-map --delim '\t' - fimoResults.bed > answer.bed

Or:

$ bedmap --echo --echo-map --delim '\t' myRegions.bed fimoResults.bed > answer.bed

FIMO results generally include the sequence of the TF model, but you can export to samtools faidx for getting back specific sequence over the wider region.

ADD COMMENT

Login before adding your answer.

Traffic: 3404 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6