If you have a de novo ("unpublished" or novel) TF position weight matrix (PWM) or MEME file describing the odds of finding a base at a position, then you can run that through a tool called TOMTOM to discover the nearest, most significant TF PWM/MEME result from a published database, such as the plant JASPAR database.
Once you have a known TF pattern, you can look upstream of target genes for sequences that are close to this pattern — say, -5kb of the gene's TSS (transcription start site).
This window would be defined as the target gene's promoter or proximal promoter, i.e., the part of the genome where a TF would bind, to control transcription of the gene immediately downstream.
You could get Arabidopsis gene annotations from a consortium, e.g.:
$ wget -qO- "https://www.arabidopsis.org/download_files/Genes/TAIR10_genome_release/TAIR10_gff3/TAIR10_GFF3_genes.gff" | gff2bed - > Arabidopsis.genes.bed
To make promoters from these genes, you could do something like:
$ awk -v FS="\t" -v OFS="\t" -v padding=5000 '{ if ($6=="+") { ; $3 = $2; $2 = $2 - padding; } else if ($6 == "-") { $2 = $3; $3 = $2 + padding; } print $0; }' Arabidopsis.genes.bed | sort-bed - > Arabidopsis.promoters.bed
You can extract the sequence information for these BED regions using a tool like bed2faidx.pl and samtools
-indexed FASTA files for the TAIR10 assembly (or whatever build of Arabidopsis that you're currently working with).
Given promoter regions in BED format converted to promoter sequences in FASTA format, you could use the instructions here to do a FIMO search of your known TF against these promoter sequences:
https://bioinformatics.stackexchange.com/questions/2467/where-to-download-jaspar-tfbs-motif-bed-file/2491#2491
Replace the hg38 chromosome FASTA files (and adjust other arguments, accordingly) with your promoter FASTA.
You can also skip the TOMTOM step if you have a PWM/MEME table for your TF of interest. Just build promoter sequences and then use FIMO.
Wow! it sounds really complicate for us, but we'll try. At first, we had thought about doing a Blast with the known target genes in A. thaliana against the genome of Citrus clementina (our organism of interest), does it make any sense? We only want those genes in order to validate the ChIP experiment before sequencing (doing a qPCR).
You could do a blast search to find homologs in Citrus, if all you are interested in is a quick validation.