Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • happy2000
    Junior Member
    • May 2011
    • 6

    Pattern location, Please help me

    Hello all,
    The following perl script looks for the pattern in each line (fasta file). the problem that when they found a pattern (an occurrence) in a sequence, it goes directly to the next line without continuing to check if there are other pattern (an occurrence) in the same line .Please, can someone help me fix this script so that when it finds a pattern in a line going to the next letter and not to the next line. Essentially he can find many patterns in the same line.
    Code:
    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    use Bio::SeqIO;
    
    my $file = 'file.txt';
    my $in = Bio::SeqIO->new(-file => $file, '-format' => 'fasta');
    
    while (my $seq = $in->next_seq()) {
    	if ($seq->seq =~ m/(ATCGA)/) {
    		print "ATCGA commence à la position $-[1]\n";
    		print "se termine juste avant la position $+[1]\n";
    	}
    }
    please help me
    thanks
  • maasha
    Senior Member
    • Apr 2009
    • 153

    #2
    What is your goal? Finding patterns or learning Perl?

    If finding patterns - then use an appropriate tool - like scan_for_matches. If learning Perl - well, TMTOWTDI. How about index instead of regex? perldoc -f index.

    Also, I should guess that Bioperl is equipped with pattern matching algorithms other than regex.


    Cheers,


    Martin

    Comment

    • happy2000
      Junior Member
      • May 2011
      • 6

      #3
      Hello,
      Thank you very much for your reply, my goal is Finding patterns and determination of position of patterns and id for the corresponding gene upstream sequence. Is there a tool that does this?
      cordially

      Comment

      Latest Articles

      Collapse

      • SEQadmin2
        Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by SEQadmin2


        I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

        Here are nine questions we think about, in roughly the order they matter, before...
        06-18-2026, 07:11 AM
      • SEQadmin2
        From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
        by SEQadmin2


        Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


        The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
        ...
        06-02-2026, 10:05 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 06-26-2026, 11:10 AM
      0 responses
      12 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-17-2026, 06:09 AM
      0 responses
      48 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-09-2026, 11:58 AM
      0 responses
      107 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-05-2026, 10:09 AM
      0 responses
      125 views
      0 reactions
      Last Post SEQadmin2  
      Working...