Help for this page

Select Code to Download


  1. or download this
    my $outfile = "$accession_$biotype";
    
  2. or download this
    my $outfile = '$accession_$biotype';
    
  3. or download this
    $outfile = "${accession}_${biotype}";
    
  4. or download this
    $outfile = $accession . '_' . $biotype;
    
  5. or download this
    use strict;
    use warnings;
    ...
            print $OUT, ">$outfile/n^^/n$sequence");
       }
    }