Help for this page

Select Code to Download


  1. or download this
    if ($line =~ s/^\s*ACCESSION\s*NUMBER:\s*/) {
        $line =~ tr/-//;
    }
    
  2. or download this
    if ($line =~ s/^\s*ACCESSION\s*NUMBER:\s*([-\d]+)$/m) {
        $access_num = $1; 
        $access_num =~ tr/-//;
    }