Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
sannalda authored Feb 6, 2024
2 parents 81149d7 + cef2b1b commit b667180
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ samples:
#SRR17032105: /scratch/sjannalda/projects/PlastidPipelineTesting/rawdata/SRR17032105/SRR17032105
#SRR12432532: /scratch/sjannalda/projects/PlastidPipelineTesting/rawdata/SRR12432532/SRR12432532



### Pipeline Options
Trimming: TRUE
Standardization: TRUE
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/Processing.smk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def sortReadsInputFunc(wildcards):
if (config["Trimming"]):
return "{sample}/data/{sample}_{read}.trimmed.fastq"
else:
return lambda wildcards: f"{config['samples'][wildcards.sample]}_{wildcards.read}.fastq"
return f"{config['samples'][wildcards.sample]}_{wildcards.read}.fastq"

rule SortReads:
input:
Expand Down

0 comments on commit b667180

Please sign in to comment.