File: boostchr.pl

package info (click to toggle)
python-pairix 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 179,892 kB
  • sloc: ansic: 5,553; python: 1,207; sh: 602; perl: 464; makefile: 64
file content (11 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

$"="\t";
while(<>){
  chomp;
  my @line = split/\t/;
  $line[2] = int(rand(1073741822));
  $line[4] = int(rand(1073741822));
  print "@line\n";
}