Skip to content

Commit fd51e21

Browse files
committed
updated paired_end function
1 parent 4352d35 commit fd51e21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

workflow/Snakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ csv = pd.read_csv("config/samples.csv")
2323
resources = Resources(config["genome"], config["ensembl_genome_build"])
2424

2525
# Get paired-end status and bam extension
26-
paired_end, BAM_EXT = paired_end()
26+
paired_end = paired_end()
2727

2828
# Get fusion protein (to be masked in fasta file)
2929
maskedgenes = masked_genes()

workflow/rules/deeptools.smk

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rule multiBigwigSummary_bedgraph:
2525

2626
use rule multiBigwigSummary_bedgraph as multiBigwigSummary_bam with:
2727
input:
28-
expand("results/bigwig/bam2bigwig/{dir}/{sample}{bamext}.bw", dir=DIRS , sample=SAMPLES, bamext=BAM_EXT),
28+
expand("results/bigwig/bam2bigwig/{dir}/{sample}.bw", dir=DIRS , sample=SAMPLES),
2929
output:
3030
"results/deeptools/scores_per_bin_bam.npz",
3131
params:

0 commit comments

Comments
 (0)