Skip to content

Instantly share code, notes, and snippets.

@JEEN
Created May 22, 2013 06:00
Show Gist options
  • Save JEEN/5625552 to your computer and use it in GitHub Desktop.
Save JEEN/5625552 to your computer and use it in GitHub Desktop.
for @ascendox
#!/usr/bin/perl
open $file,'<',$ARGV[0];
while(<$file>){
my @line=split ' ',$_;
if ($line[1] < 0.05 && $line[2] < 0.05) {
$count++;
$total++;
print join("\t", @line), "\n";.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment