Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
changed filtering criteria for MAF filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Britt Lack committed Dec 27, 2017
1 parent ef31f08 commit 47319f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Results-template/Scripts/prep_mafs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@
last if m/^$/;
@line = split "\t", $_;
if ($line[0] eq 'Hugo_Symbol') {
print D "$line[0]\n";
print D "$_\n";
}
else {
if ($line[$z] eq '-') {
print D "$line[0]\n";
print D "$_\n";
}
else {
if ($line[$z] <= 0.001) {
print D "$line[0]\n";
print D "$_\n";
}
}
}
Expand Down

0 comments on commit 47319f6

Please sign in to comment.