Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonkoehn committed Sep 13, 2024
1 parent a8f5901 commit c76ad78
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions scripts/amplicon_covs_click.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,20 +335,18 @@ def main(

make_cov_heatmap(all_covs, os.path.join(outdir, "cov_heatmap.pdf"))

print("Making median cov hist")

make_median_cov_hist(all_covs, os.path.join(outdir, "median_cov_hist.pdf"))
make_median_coverage_barplot(
all_covs, os.path.join(outdir, "median_coverage_barplot.pdf")
)

make_cov_heatmap(all_covs_frac, os.path.join(outdir, "cov_heatmap_norm.pdf"))
make_median_cov_hist(
all_covs_frac, os.path.join(outdir, "median_cov_hist_norm.pdf")
)
make_median_coverage_barplot(
all_covs_frac, os.path.join(outdir, "median_coverage_barplot_norm.pdf")
)
# make_median_cov_hist(all_covs, os.path.join(outdir, "median_cov_hist.pdf"))
# make_median_coverage_barplot(
# all_covs, os.path.join(outdir, "median_coverage_barplot.pdf")
# )

# make_cov_heatmap(all_covs_frac, os.path.join(outdir, "cov_heatmap_norm.pdf"))
# make_median_cov_hist(
# all_covs_frac, os.path.join(outdir, "median_cov_hist_norm.pdf")
# )
# make_median_coverage_barplot(
# all_covs_frac, os.path.join(outdir, "median_coverage_barplot_norm.pdf")
# )


if __name__ == "__main__":
Expand Down

0 comments on commit c76ad78

Please sign in to comment.