Snakemake ルールを使用して、不要になった Snakemake 出力ファイルを削除する方法がわかりません。
具体的には、bwa_mem_sam
という名前のファイルを作成するルールがあります{sample}.sam
。bwa_mem_bam
という名前のファイルを作成するこの別のルールがあります{sample.bam}
。
2 つのファイルに同じ情報が異なる形式で含まれている場合、最初のファイルを削除したいのですが、うまくいきません。
どんな助けでも大歓迎です。ベン。
rule bwa_mem_map:
input:
sam="{sample}.sam",
bam="{sample}.bam"
shell:
"rm {input.sam}"
# Convert SAM to BAM.
rule bwa_mem_map_bam:
input:
rules.sam_to_bam.output
# Use bwa mem to map reads on a reference genome.
rule bwa_mem_map_sam:
input:
reference=reference_genome(),
index=reference_genome_index(),
fastq=lambda wildcards: config["units"][SAMPLE_TO_UNIT[wildcards.sample]],
output:
"mapping/{sample}.sam"
threads: 12
log:
"mapping/{sample}.log"
shell:
"{BWA} mem -t {threads} {input.reference} {input.fastq} > {output} 2> {log} "\
"|| (rc=$?; cat {log}; exit $rc;)"
rule sam_to_bam:
input:
"{prefix}.sam"
output:
"{prefix}.bam"
threads: 8
shell:
"{SAMTOOLS} view --threads {threads} -b {input} > {output}"