Help for this page

Select Code to Download


  1. or download this
    $ perl -Mstrict -Mwarnings -e '
        my @fasta = (">dddd\n", "abcdef\n", ">eeee\n", "bcdef\n");
    ...
    aaaaabcdef
    >eeee
    aaaabcdef
    
  2. or download this
    while (<$input_fh>) {
        print $output_fh 'aaaa' unless /^>/;
        print $output_fh $_;
    }