| 31 | These searches are generally a two-step process, one step to create the motif and one step to search with it. There are several choices of detailed options, so check out the documentation. |
| 32 | |
| 33 | [http://emboss.sourceforge.net/apps/cvs/emboss/apps/prophecy.html prophecy] + [http://emboss.sourceforge.net/apps/cvs/emboss/apps/profit.html profit] (EMBOSS suite) - for proteins |
| 34 | {{{ |
| 35 | prophecy -sequence Aligned_protein_sites.fa -type F -name MyProfile -outfile MyProfile.txt -filter |
| 36 | profit -infile MyProfile.txt -sequence My_proteins.fa -outfile My_proteins.MyProfileprofit_out.txt |
| 37 | }}} |
| 38 | |
| 39 | [http://hmmer.org/ HMMER] - for proteins or nucleic acids |
| 40 | {{{ |
| 41 | # Create a HMM from an aligned set of proteins (fasta or other common format) |
| 42 | hmmbuild Aligned_protein_sites.hmm Aligned_protein_sites.fa |
| 43 | # Use the HMM to search a fasta file of proteins |
| 44 | hmmsearch Aligned_protein_sites.hmm Protein_set.fa |
| 45 | }}} |