diff options
author | Brian Cully <bjc@spork.org> | 2024-01-19 20:32:46 -0500 |
---|---|---|
committer | Brian Cully <bjc@spork.org> | 2024-01-19 20:32:46 -0500 |
commit | 882b94f56de360933d712d601ae01cda520b80cd (patch) | |
tree | f501ad77b669a465b88ea5b8bb3c5d960c95b39e | |
parent | a0b19de6a07da91037787bac900453693147e0e4 (diff) | |
download | fav-882b94f56de360933d712d601ae01cda520b80cd.tar.gz fav-882b94f56de360933d712d601ae01cda520b80cd.zip |
remove dead code
-rwxr-xr-x | varscan2codon.pl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/varscan2codon.pl b/varscan2codon.pl index 71d880f..e45da77 100755 --- a/varscan2codon.pl +++ b/varscan2codon.pl @@ -66,7 +66,6 @@ while (<$variants>) { my $orig_aa = $aa2letter{$codon2aa{$codon}}; substr $codon, $offset, 1, $new_nt; my $new_aa = $aa2letter{$codon2aa{$codon}}; - my $codon_pos = floor($pos / 3); print "$name\t" . lc($orig_nt) . $pos . lc($new_nt) . "\t$protein\t" . $orig_aa . $aa_index . $new_aa . "\n"; } |