Codebase list cd-hit / upstream/4.8.1 clstr_renumber.pl
upstream/4.8.1

Tree @upstream/4.8.1 (Download .tar.gz)

clstr_renumber.pl @upstream/4.8.1raw · history · blame

#!/usr/bin/perl
$no = 0;
while($ll=<>){
  if ($ll =~ /^>Cluster (\d+)/) {
    print ">Cluster $no\n"; $no++;
    $cno  = 0;
  }
  else {
    $ll =~ s/^\d+/$cno/;
    print $ll;
    $cno++;
  }

}