Help for this page

Select Code to Download


  1. or download this
    # Remove extraneous characters, make it one big long string to use sub
    +str position on it
    $genome =~ s/[\d\r\n\s]+//g;
    
  2. or download this
    # Remove extraneous characters, make it one big long string to use sub
    +str position on it
    $genome =~ tr/0-9 \t\f\n\r//d;