Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMoelder committed Oct 17, 2024
1 parent 7269264 commit 54cc7e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -1243,8 +1243,8 @@ def get_vembrane_config(wildcards, input):
"name": "gnomad genome af",
},
"EXON": {
"name": "exon",
"expr": "ANN['EXON'].raw",
"name": "exon",
"expr": "ANN['EXON'].raw",
},
"SpliceAI_pred_DS_AG": {
"name": "spliceai acceptor gain",
Expand Down Expand Up @@ -1419,7 +1419,7 @@ def get_primer_extra(wc, input):
min_primer_len = get_shortest_primer_length(input.reads)
# Check if shortest primer is below default values
if min_primer_len < 32:
extra += f" -T {min_primer_len-2}"
extra += f" -T {min_primer_len - 2}"
if min_primer_len < 19:
extra += f" -k {min_primer_len}"
return extra
Expand Down

0 comments on commit 54cc7e9

Please sign in to comment.