Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • how to compute all restriction enzyme sites in the human genome?

    Dear colleagues,
    I have a very simple question to ask but I am struggling with it...
    I have a restriction enzyme of 6 nucleotides and i want to find ALL sites within the human genome (hg19 for instance) where the restriction enzyme matches the sequence.
    I was trying to use blast but it seems that I am using a too short sequence so it never returns a list.
    Any recommendations on how to compute that?
    thanks a lot in advance

  • #2
    This should be fun. A real classic bioinformatics task for beginners.

    There are some good books out there for learning how to solve these problems.
    Beginning Perl for Bioinformatics
    Bioinformatics Programming in Python: A Practical Course for Beginners

    For working environments you could try:
    DNA Linux

    This kind of task is also an excellent starting point for learning simple scripting tasks on your own. In other words, you could use this as an excuse to learn some Python, Perl, Regex, Awk, etc.

    There are also packages/libraries of code that will have already solved many of these types of basic bioinformatics tasks. To name just a few of these: BioPerl, BioPython, EMBOSS, etc.

    Comment


    • #3
      In case you feel that my previous post was dodging your question ... attached is an example Perl script that you could use as a starting point. It uses regex to identify occurrences of one string (an RE sequence) within another string (a chromosome).

      In this example if you want to get all the EcoRI sites on chromosome 22 you would do this (from a linux prompt):
      ./findRestrictionSites.pl --genome_version=hg19 --chromosome=22 --re_site=GAATTC

      The output will be one site per line in the format: chr:start-end

      There is also a list of online RE analysis tools here.
      Attached Files

      Comment


      • #4
        If you prefer to use R/Bioconductor, you might investigate the BSgenome and Biostrings packages. Here's a document walking your through the process:

        Comment


        • #5
          Thanks a lot! Very very useful!

          Comment


          • #6
            I have used BioStrings and BSgenome to find restriction sites in the mouse genome...it works great. The only caveat is that you have to use 'matchPattern()' on a per chromosome basis, and then append all the output files if a single per genome file is desired.

            Comment


            • #7
              HiCUP

              Hi,

              check out HiCUP digester in its pipeline:


              Best

              Comment


              • #8
                Hi lunacab,

                Would you be willing to share your data regarding the restriction site coordinates in the human genome? It would be incredibly helpful!

                Comment


                • #9
                  Originally posted by malachig View Post
                  It uses regex to identify occurrences of one string (an RE sequence) within another string (a chromosome).
                  Just as a comment, if I'm not mistaken your scripts reverse-complements the regular expression, which is something that cannot be done. I'd rather reverse complement the reference sequence even if it is more "expensive".

                  Comment


                  • #10
                    EMBOSS is an old program, but it works remarkably well for this type of task.
                    Don't be fooled by the dated website.
                    It is a very efficient program.

                    Comment


                    • #11
                      Originally posted by dariober View Post
                      Just as a comment, if I'm not mistaken your scripts reverse-complements the regular expression, which is something that cannot be done. I'd rather reverse complement the reference sequence even if it is more "expensive".
                      I'm not sure I follow. It doesn't reverse-complement the "regular expression" it reverse complements the restriction enzyme sequence (a string) that is used in the regular expression. We can either (A) search for our string of interest in the reference sequence and its reverse complement, or (B) search for our string of interest and its reverse complement in the reference sequence.

                      These two approaches should be equivalent. The script uses option B.

                      Comment

                      Latest Articles

                      Collapse

                      • seqadmin
                        Essential Discoveries and Tools in Epitranscriptomics
                        by seqadmin


                        The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
                        Yesterday, 07:01 AM
                      • seqadmin
                        Current Approaches to Protein Sequencing
                        by seqadmin


                        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                        04-04-2024, 04:25 PM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by seqadmin, 04-11-2024, 12:08 PM
                      0 responses
                      43 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 10:19 PM
                      0 responses
                      43 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 09:21 AM
                      0 responses
                      38 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-04-2024, 09:00 AM
                      0 responses
                      55 views
                      0 likes
                      Last Post seqadmin  
                      Working...
                      X