Help for this page

Select Code to Download


  1. or download this
    # https://www.perlmonks.org/?node_id=11110379
    # usage: perl create_fasta.pl > NR.fasta
    ...
            print "$s\n";
        }
    }
    
  2. or download this
    # https://www.perlmonks.org/?node_id=11110379
    # usage: perl create_peptides.pl > peptides.txt
    ...
        my $seq = join '', shuffle(split //, $nr_partial_seq), "\n";
        print substr($seq, rand($len), 15), "\n";
    }