Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • search homopolymers

    Hi

    I'd like to look for homopolymers in a genome. Is there any program can find it easily?

    I wrote a script and simply found out all the patterns like "AAAA...", "CCC...", length from 2 to 10. But I am afraid those outputs may not be true. Somebody told me Novoalign can work on this but it is not free.

    Thanks!

  • #2
    If you have more confidence in someone else's code than your own, you could use the EMBOSS program dreg.
    Several published papers have used it to identify homopolymers.



    One among several papers that used dreg to identify homopolymers:
    "Homopolymeric tracts represent a general regulatory mechanism in prokaryotes"
    Last edited by blancha; 11-27-2015, 08:49 PM.

    Comment


    • #3
      I use a Perl regular expression to find homopolymers in my fasta2svg code:

      Code:
      $tSeq = $base_sequence;
      $hl = $homopolymer_minimum_length;
      while($tSeq =~ s/^(.*?)(A{$hl,}|C{$hl,}|G{$hl,}|T{$hl,})//){
        printf("Non-homopolymer sequence: $1\n");
        printf("Homopolymer sequence: $2\n");
      }

      Comment


      • #4
        Thank you very much! I will try drug and gringer's code. Thanks!

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Recent Advances in Sequencing Analysis Tools
          by seqadmin


          The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
          05-06-2024, 07:48 AM
        • 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...
          04-22-2024, 07:01 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, 05-10-2024, 06:35 AM
        0 responses
        20 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-09-2024, 02:46 PM
        0 responses
        25 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-07-2024, 06:57 AM
        0 responses
        21 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-06-2024, 07:17 AM
        0 responses
        21 views
        0 likes
        Last Post seqadmin  
        Working...
        X