Skip to content

Commit

Permalink
fix(plot): fixes a bug in the snakemake pipeline which uses the defau…
Browse files Browse the repository at this point in the history
…lt mapping score of 30 when mapping score is set to 0

fixing dendropy dependency

using latest 4.6
  • Loading branch information
sbastkowski committed Sep 28, 2024
1 parent 0e588ee commit cdf0c56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quatradis/pipelines/create_plots.smk
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rule create_plot:
aligner=("--aligner=" + config["aligner"]) if config["aligner"] else "",
tag=("--tag=" + config["tag"]) if config["tag"] else "",
mismatch=("--mismatch=" + str(config["mismatch"])) if config["mismatch"] else "",
mapping_score=("--mapping_score=" + str(config["mapping_score"])) if config["mapping_score"] else "",
mapping_score="--mapping_score=" + str(config["mapping_score"]),
threads="--threads=" + str(config["threads"]) if config["threads"] else "",
output_dir=os.path.join(config["output_dir"], "{fq}")
threads: int(config["threads"])
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pysam
biopython
cython
dendropy
dendropy==4.6
graphviz
matplotlib
numpy
pandas
scipy
seaborn
snakeviz
snakeviz

0 comments on commit cdf0c56

Please sign in to comment.