Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dlaehnemann authored Nov 20, 2023
1 parent 8b85d76 commit d5e1d65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ def get_fq(wildcards):
)
)
# single end sample
return {"fq1": "results/trimmed/{sample}_{unit}_single.fastq.gz".format(**wildcards)}
return {
"fq1": "results/trimmed/{sample}_{unit}_single.fastq.gz".format(**wildcards)
}
else:
# no trimming, use raw reads
u = units.loc[(wildcards.sample, wildcards.unit)]
Expand Down

0 comments on commit d5e1d65

Please sign in to comment.