Changes between Version 19 and Version 20 of SOP/PatternsMotifs


Ignore:
Timestamp:
10/24/19 10:52:34 (5 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOP/PatternsMotifs

    v19 v20  
    4040[http://hmmer.org/ HMMER] - for proteins or nucleic acids
    4141{{{
    42 # Create a HMM from an aligned set 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)
    4343hmmbuild MyProfile.hmm Aligned_protein_sites.fa
    4444# Use the HMM to search a fasta file of proteins
     
    4848[http://jaspar.genereg.net/ JASPAR] - for transcription factor binding sites
    4949
    50 [http://meme-suite.org/doc/meme-format.html/ MEME Suite] For proteins
    51  * Build a PWM from a series of aligned sequences using the [http://meme-suite.org/tools/mem/ meme] command
     50[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
    5252{{{
    53 meme aligned_sequences.fa -protein -nmotifs 1 -w [width of motif] -o output_directory
     53meme Sequence_set.fa -protein -nmotifs 5 -minw 8 -maxw 12 -o output_directory
    5454}}}
    5555
    5656Program options:
    5757    -protein:   specifies your input sequences are amino acids.\\
     58    -dna:   specifies your input sequences are DNA nucleotides.\\
    5859    -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//
    6061
    6162*  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.