Codebase list cd-hit / dd1d79ab-490a-4f67-a380-c6b87e70d586/upstream clstr_renumber.pl
dd1d79ab-490a-4f67-a380-c6b87e70d586/upstream

Tree @dd1d79ab-490a-4f67-a380-c6b87e70d586/upstream (Download .tar.gz)

clstr_renumber.pl @dd1d79ab-490a-4f67-a380-c6b87e70d586/upstreamraw · history · blame

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

}