Help for this page

Select Code to Download


  1. or download this
    open (FILE,"abc345.txt") or die $!;
           while (<FILE>){
           $_ = /((^Query = .*)|(^\>.*)|(Length = .*))/i;
    ...
          
       }
      close (FILE) ;
    
  2. or download this
    open (FILE,"abc345.txt") or die $!;
           while (<FILE>){
           $_ = /((^Query = .*)|(^\>.*)|(Length = .*))/i;
    ...
          
       }
      close (FILE) ;