Skip to content

Commit

Permalink
Change the vcf output from bcf to vcf
Browse files Browse the repository at this point in the history
`variants=~/dc_workshop/results/bcf/${base}_variants.vcf` is pointing to the bcf directory but it should be directed to vcf as `    `variants=~/dc_workshop/results/vcf/${base}_variants.vcf`
  • Loading branch information
DininduSenanayake authored Aug 5, 2021
1 parent 80a35c5 commit cda6872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/05-automation.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ for fq1 in ~/dc_workshop/data/trimmed_fastq_small/*_1.trim.sub.fastq
bam=~/dc_workshop/results/bam/${base}.aligned.bam
sorted_bam=~/dc_workshop/results/bam/${base}.aligned.sorted.bam
raw_bcf=~/dc_workshop/results/bcf/${base}_raw.bcf
variants=~/dc_workshop/results/bcf/${base}_variants.vcf
variants=~/dc_workshop/results/vcf/${base}_variants.vcf
final_variants=~/dc_workshop/results/vcf/${base}_final_variants.vcf
bwa mem $genome $fq1 $fq2 > $sam
Expand Down

0 comments on commit cda6872

Please sign in to comment.