Help for this page

Select Code to Download


  1. or download this
    my $outfile = "result.txt";
    open my $OUT, ">", $outfile or die "could not open $outfile $!"; # idi
    +omatic way to open a file for writing
    
  2. or download this
    print $OUT "text to be printed to the file\n";
    
  3. or download this
    close $OUT;
    
  4. or download this
    use strict;
    use warnings;
    
  5. or download this
    #!/usr/bin/perl
    use strict;
    ...
    chomp $cut_off;
    
    my $file = "lib-pool-fosmid.fastq";