From 8e75c6df53729df4499c9e308bcea864bc2fc0aa Mon Sep 17 00:00:00 2001 From: mannycruz <55067099+mannycruz@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:36:07 -0700 Subject: [PATCH] Add genome build wildcard to input maf rule --- modules/hotmaps/1.0/hotmaps.smk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hotmaps/1.0/hotmaps.smk b/modules/hotmaps/1.0/hotmaps.smk index afbec2d43..2329fcd75 100644 --- a/modules/hotmaps/1.0/hotmaps.smk +++ b/modules/hotmaps/1.0/hotmaps.smk @@ -94,7 +94,7 @@ rule _hotmaps_input_maf: input: maf = CFG["inputs"]["input_maf"] output: - maf = CFG["dirs"]["inputs"] + "master_maf/{seq_type}/input.maf" + maf = CFG["dirs"]["inputs"] + "master_maf/{seq_type}--{genome_build}/input.maf" run: op.absolute_symlink(input.maf, output.maf)