Skip to content

Commit

Permalink
fix: config keys for test diles, formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yeising committed Sep 30, 2024
1 parent ff5c44e commit dd057c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .test/config-simple/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ maximum_secondary: 100
secondary_score_ratio: 1.0

# Samtools view opts, "-b" creates BAM from SAM.
sview_opts: "-b"
samtobam_opts: "-b"

# Samtools sort opts,
ssort_opts: ""
bamsort_opts: ""

# Salmon library type
salmon_libtype: "U"
Expand All @@ -51,7 +51,7 @@ salmon_libtype: "U"
# QC options

# Samtools stats opts
sstats_opts: ""
bamstats_opts: ""

# Count filtering options - customize these according to your experimental design:

Expand Down
8 changes: 6 additions & 2 deletions workflow/rules/commons.smk
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,14 @@ def aggregate_input(samples):
def rule_all_input():
all_input = list()
all_input.append("versions.txt")
all_input.extend(expand("NanoPlot/{sample}/NanoPlot-report.html", sample=samples["sample"]))
all_input.extend(
expand("NanoPlot/{sample}/NanoPlot-report.html", sample=samples["sample"])
)
all_input.append("NanoPlot/all_samples/NanoPlot-report.html")
all_input.extend(expand("QC/samstats/{sample}.txt", sample=samples["sample"]))
all_input.extend(expand("qualimap/{sample}/qualimapReport.html", sample=samples["sample"]))
all_input.extend(
expand("qualimap/{sample}/qualimapReport.html", sample=samples["sample"])
)
all_input.extend(
expand("counts/{sample}_salmon/quant.sf", sample=samples["sample"])
)
Expand Down

0 comments on commit dd057c7

Please sign in to comment.