Skip to content

Commit

Permalink
Merge pull request #58 from CCBR/iss-56
Browse files Browse the repository at this point in the history
fix bugs in single-end rules
  • Loading branch information
kopardev authored Dec 20, 2023
2 parents 22a5581 + f190599 commit 7c58ad6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Version Notes
## development version

- Fix bugs that prevented single-end data from running through the pipeline. (#58, @kelly-sovacool)

## v2.5

Expand Down
4 changes: 2 additions & 2 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ elif not paired_end:
# FastQ Screen
expand(join(workpath,"FQscreen","{name}.R1.trim_screen.txt"),name=samples),
expand(join(workpath,"FQscreen","{name}.R1.trim_screen.png"),name=samples),
expand(join(workpath,"FQscreen2","{name}.R1.trim_screen.txt"),name=samples),
expand(join(workpath,"FQscreen2","{name}.R1.trim_screen.png"),name=samples),
expand(join(workpath,"FQscreen2","{name}.R1_2.trim_screen.txt"),name=samples),
expand(join(workpath,"FQscreen2","{name}.R1_2.trim_screen.png"),name=samples),

# Kraken + Krona
expand(join(workpath,kraken_dir,"{name}.trim.kraken_bacteria.taxa.txt"),name=samples),
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/single-end.smk
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ rule rnaseq_multiqc:
expand(join(workpath,rseqc_dir,"{name}.Rdist.info"),name=samples),
expand(join(workpath,rseqc_dir,"{name}.star_rg_added.sorted.dmark.summary.txt"),name=samples),
expand(join(workpath,"rawQC","{name}.fastq.info.txt"),name=samples),
expand(join(workpath,kraken_dir,"{name}.trim.kraken_bacteria.taxa.txt"),name=sample),
expand(join(workpath,kraken_dir,"{name}.trim.kraken_bacteria.taxa.txt"),name=samples),
fqinfo=expand(join(workpath,"rawQC","{name}.fastq.info.txt"),name=samples),
tins=expand(join(workpath,rseqc_dir,"{name}.star_rg_added.sorted.dmark.summary.txt"),name=samples)
output:
Expand Down

0 comments on commit 7c58ad6

Please sign in to comment.