We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e369d02 commit c16f68eCopy full SHA for c16f68e
gwaspy/imputation/glimpse2_impute.py
@@ -236,8 +236,6 @@ def glimpse2_impute_phase(
236
--threads 4 \
237
--output {j.imputed_phased['bcf']}""")
238
239
- j.command(f"""bcftools index -f {j.imputed_phased['bcf']} --output {j.imputed_phased['bcf.csi']} --threads {ncpu}""")
240
-
241
return j
242
243
# 7. Ligate imputed chunks
@@ -272,7 +270,6 @@ def ligate_chunks(
272
270
j.command(f'echo "{imp_chunk_bcf_names}" > chunk_list.txt')
273
271
274
j.command(f"""GLIMPSE2_ligate --input chunk_list.txt --output {j.ligated['bcf']} --threads {ncpu}""")
275
- j.command(f"""bcftools index {j.ligated['bcf']} --output {j.ligated['bcf.csi']} --threads {ncpu}""")
276
277
b.write_output(j.ligated,
278
f'{out_dir}/glimpse/{output_vcf_name}_{chrom}.phased.imputed')
0 commit comments