File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,19 +14,6 @@ rule filter_genbank_features:
1414 "../scripts/filter_genbank_features.py"
1515
1616
17- rule build_problematic_bed :
18- conda :
19- "../envs/bedtools.yaml"
20- input :
21- vcf = lambda wildcards : select_problematic_vcf (),
22- output :
23- bed = temp (OUTDIR / "sites_masked.bed" ),
24- log :
25- LOGDIR / "build_problematic_bed" / "log.txt" ,
26- shell :
27- "bedtools merge -i {input.vcf} >{output.bed} 2>{log}"
28-
29-
3017rule n_s_sites :
3118 threads : 1
3219 conda : "../envs/biopython.yaml"
Original file line number Diff line number Diff line change 1+ rule problematic_vcf_to_bed :
2+ conda :
3+ "../envs/bedtools.yaml"
4+ input :
5+ vcf = lambda wildcards : select_problematic_vcf (),
6+ output :
7+ bed = temp (OUTDIR / "sites_masked.bed" ),
8+ log :
9+ LOGDIR / "build_problematic_bed" / "log.txt" ,
10+ shell :
11+ "bedtools merge -i {input.vcf} >{output.bed} 2>{log}"
12+
13+
114rule bcftools_mpileup_all_sites :
215 threads : 1
316 conda : "../envs/var_calling.yaml"
You can’t perform that action at this time.
0 commit comments