Skip to content

Commit

Permalink
fixes multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jan 14, 2025
1 parent 0c0cea4 commit 8fbf0dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snakePipes/shared/rules/multiQC.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ def multiqc_input_check(return_value):
infiles.append( expand(aligner+"/{sample}.markdup.bam", sample = samples) +
expand("Sambamba/{sample}.markdup.txt", sample = samples) +
expand("deepTools_qc/estimateReadFiltering/{sample}_filtering_estimation.txt",sample=samples))
infiles.append( expand("allelic_bams/{sample}.{suffix}.sorted.bam", sample = samples,suffix = allele_suffix) )
infiles.append( expand("allelic_bams/{sample}.{suffix}.sorted.bam", sample = samples,suffix = ['allele_flagged', 'genome1', 'genome2', 'unassigned']) )
indir += aligner
indir += " Sambamba "
indir += " deepTools_qc "
indir += " allelic_bams "
if "allelic-whatshap" in mode and fromBAM:
infiles.append( expand("filtered_bam/{sample}.filtered.bam.txt", sample = samples) )
infiles.append( expand("allelic_bams/{sample}.{suffix}.sorted.bam", sample = samples,suffix = allele_suffix) )
infiles.append( expand("filtered_bam/{sample}.filtered.bam", sample = samples) )
infiles.append( expand("allelic_bams/{sample}.{suffix}.sorted.bam", sample = samples,suffix = ['allele_flagged', 'genome1', 'genome2', 'unassigned']) )
infiles.append( expand("featureCounts/{sample}.allelic_counts.txt", sample = samples) )
indir += " filtered_bam " + " featureCounts "
indir += " allelic_bams "
Expand Down

0 comments on commit 8fbf0dd

Please sign in to comment.