Skip to content

Commit

Permalink
fix missing partition parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichl committed Dec 19, 2023
1 parent cd922c3 commit 537feaf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions workflow/rules/clustering.smk
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ rule aggregate_clustering_results:
aggregated_clusterings = os.path.join(config["result_path"],'unsupervised_analysis','{sample}','{method}','{method}_clusterings.csv'),
log:
os.path.join("logs","rules","aggregate_clustering_results_{sample}_{method}.log"),
params:
partition=config.get("partition"),
run:
# list to hold the individual clusterings
agg_clust = []
Expand All @@ -72,6 +74,8 @@ rule aggregate_all_clustering_results:
metadata_clusterings = os.path.join(config["result_path"],'unsupervised_analysis','{sample}','metadata_clusterings.csv'),
log:
os.path.join("logs","rules","aggregate_all_clustering_results_{sample}.log"),
params:
partition=config.get("partition"),
run:
# list to hold the data
agg_clust = []
Expand Down

0 comments on commit 537feaf

Please sign in to comment.