Skip to content

Commit

Permalink
added raw data to input rule when no processing is performed
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Mar 13, 2024
1 parent f1beaf7 commit f3c9234
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 @@ -475,9 +475,11 @@ def get_dna_align_input(wildcards):
readtype=["R1", "R2"],
group = wildcards.group,
sample = wildcards.sample)
else: # no pre-processing
return config['data']['dnaseq'][wildcards.group]

# is bamfile
else: # no pre-processing has been performed
else: # no pre-processing has been performed
return config['data']['dnaseq'][wildcards.group]


Expand Down

0 comments on commit f3c9234

Please sign in to comment.