Skip to content

Commit

Permalink
Merge pull request #106 from smlmbrt/typo-palindromes
Browse files Browse the repository at this point in the history
Fix typo in palindromes
  • Loading branch information
jiyue1214 authored Oct 30, 2024
2 parents db70e5d + b5f5ad1 commit 0d9639f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/main_pysam.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def main():
# Harmonise palindromic alleles
elif is_palindromic(ss_rec.other_al, ss_rec.effect_al):

strand_counter['Palindormic variant'] += 1
strand_counter['Palindromic variant'] += 1
if args.hm_sumstats:
ss_rec = harmonise_palindromic(ss_rec, vcf_rec)

Expand Down
2 changes: 1 addition & 1 deletion bin/sum_strand_counts_10percent_nf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def aggregate_counts(in_dir,out,threshold):

variant_type_dict = {
"Palindormic variant": 0,
"Palindromic variant": 0,
"Forward strand variant": 0,
"Reverse strand variant": 0,
"No VCF record found": 0,
Expand Down
2 changes: 1 addition & 1 deletion bin/sum_strand_counts_nf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def aggregate_counts(in_dir, out, threshold):

variant_type_dict = {
"Palindormic variant": 0,
"Palindromic variant": 0,
"Forward strand variant": 0,
"Reverse strand variant": 0,
"No VCF record found": 0,
Expand Down

0 comments on commit 0d9639f

Please sign in to comment.