We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dfb966 commit 78f7f9dCopy full SHA for 78f7f9d
workflow/rules/vaf.smk
@@ -206,22 +206,6 @@ use rule concat_vcf_fields as concat_variants with:
206
OUTDIR/f"{OUTPUT_NAME}.variants.tsv",
207
208
209
-rule samtools_depth_all_sites:
210
- threads: 1
211
- conda: "../envs/var_calling.yaml"
212
- params:
213
- min_mq = 0,
214
- min_bq = config["VC"]["MIN_QUALITY"],
215
- input:
216
- bam = get_input_bam,
217
- output:
218
- OUTDIR / "samtools_depth_all_sites" / "{sample}.depth.tsv"
219
- log:
220
- LOGDIR / "samtools_depth_all_sites" / "{sample}.txt",
221
- shell:
222
- "samtools depth --threads {threads} -a -H -J -Q {params.min_bq} -q {params.min_mq} -o {output:q} {input:q} >{log:q} 2>&1"
223
-
224
225
rule bcftools_mpileup_all_sites:
226
threads: 1
227
conda: "../envs/var_calling.yaml"
0 commit comments