Help for this page

Select Code to Download


  1. or download this
    ...
    open OUT, ">", "outfile.name" or die "outfile.name: $!\n";
    ...
    print OUT $DNA_conc;
    # and so on...
    
  2. or download this
    # don't do this:
    #  print " Enter the number. \n";
    ...
        unless ( @ARGV == 1 and $ARG[0] =~ /([\d.]+)/ );
    
    my $df = $1;
    
  3. or download this
        your_script_name 10.5 > outfile.name
    
  4. or download this
    #!/usr/bin/perl
    
    ...
            print join( "\t", @vals ), "\n";
        }
    }
    
  5. or download this
     script_name  10  input.txt > 10_x_50_x_input.txt