Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Perl script to read the next line of a file !

  • Public
By Abhinav 559 days ago
my $line = <$fileHandler>; while(1) { # keep looping until I say so my $nextLine = <$fileHandler>; if ($line =~ m/>/ || !defined $nextLine) { ### Do the stuff } ### Do any other stuff; last unless defined $nextLine; $line = $nextLine; }