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
                        Understanding Genetic Influence on Infectious Disease
                        by seqadmin




                        During the COVID-19 pandemic, scientists observed that while some individuals experienced severe illness when infected with SARS-CoV-2, others were barely affected. These disparities left researchers and clinicians wondering what causes the wide variations in response to viral infections and what role genetics plays.

                        Jean-Laurent Casanova, M.D., Ph.D., Professor at Rockefeller University, is a leading expert in this crossover between genetics and infectious...
                        09-09-2024, 10:59 AM
                      • seqadmin
                        Addressing Off-Target Effects in CRISPR Technologies
                        by seqadmin






                        The first FDA-approved CRISPR-based therapy marked the transition of therapeutic gene editing from a dream to reality1. CRISPR technologies have streamlined gene editing, and CRISPR screens have become an important approach for identifying genes involved in disease processes2. This technique introduces targeted mutations across numerous genes, enabling large-scale identification of gene functions, interactions, and pathways3. Identifying the full range...
                        08-27-2024, 04:44 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by seqadmin, Today, 06:25 AM
                      0 responses
                      13 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, Yesterday, 01:02 PM
                      0 responses
                      12 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 09-18-2024, 06:39 AM
                      0 responses
                      14 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 09-11-2024, 02:44 PM
                      0 responses
                      14 views
                      0 likes
                      Last Post seqadmin  
                      Working...
                      X