Skip to content

Commit

Permalink
skip falco for now, to avoid pipeline failure (it throws a segmentati…
Browse files Browse the repository at this point in the history
…on fault, probably because of zero length reads: smithlabcode/falco#26)
  • Loading branch information
dlaehnemann committed Mar 16, 2022
1 parent 8e8c42f commit 3b3afc0
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -71,25 +71,25 @@ def get_final_output():
)
)
final_output.append("results/qc/multiqc.html")
for sample, unit in units.index:
row = units.loc[sample].loc[unit]
final_output.extend(
expand(
"results/qc/falco/{file}",
file=[
row.fq1.replace(".fastq.gz", "/fastqc_report.html"),
row.fq2.replace(".fastq.gz", "/fastqc_report.html"),
],
)
)
final_output.extend(
expand(
"results/qc/falco/results/trimmed/{s}.{u}.{r}/fastqc_report.html",
s=sample,
u=unit,
r=["1", "2"],
)
)
# for sample, unit in units.index:
# row = units.loc[sample].loc[unit]
# final_output.extend(
# expand(
# "results/qc/falco/{file}",
# file=[
# row.fq1.replace(".fastq.gz", "/fastqc_report.html"),
# row.fq2.replace(".fastq.gz", "/fastqc_report.html"),
# ],
# )
# )
# final_output.extend(
# expand(
# "results/qc/falco/results/trimmed/{s}.{u}.{r}/fastqc_report.html",
# s=sample,
# u=unit,
# r=["1", "2"],
# )
# )

return final_output

Expand Down

0 comments on commit 3b3afc0

Please sign in to comment.