Changes between Version 19 and Version 20 of SOP/PatternsMotifs
- Timestamp:
- 10/24/19 10:52:34 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOP/PatternsMotifs
v19 v20 40 40 [http://hmmer.org/ HMMER] - for proteins or nucleic acids 41 41 {{{ 42 # Create a HMM from a n alignedset of proteins or nucleic acids (fasta or other common format)42 # Create a HMM from a set of proteins or nucleic acids (fasta or other common format) 43 43 hmmbuild MyProfile.hmm Aligned_protein_sites.fa 44 44 # Use the HMM to search a fasta file of proteins … … 48 48 [http://jaspar.genereg.net/ JASPAR] - for transcription factor binding sites 49 49 50 [http://meme-suite.org/ doc/meme-format.html/ MEME Suite] For proteins51 * Build a PWM from a series of aligned sequences using the [http://meme-suite.org/tools/mem/meme] command50 [http://meme-suite.org/ MEME Suite] For proteins or nucleic acids 51 * Build a PWM from a series of sequences using the [http://meme-suite.org/tools/meme meme] command 52 52 {{{ 53 meme aligned_sequences.fa -protein -nmotifs 1 -w [width of motif]-o output_directory53 meme Sequence_set.fa -protein -nmotifs 5 -minw 8 -maxw 12 -o output_directory 54 54 }}} 55 55 56 56 Program options: 57 57 -protein: specifies your input sequences are amino acids.\\ 58 -dna: specifies your input sequences are DNA nucleotides.\\ 58 59 -nmotifs: indicates the number of motifs to look for in your sequences\\ 59 - w: defines a width of a motif to find [optional].//60 -minw, -maxw: minimum and maximum motif widths// 60 61 61 62 * Using the [http://meme-suite.org/doc/mast.html/ MAST] program within the MEME-suite, with the PWM output by the above command you can search a list of protein sequences, in FASTA format, for your motif.