Skip to content

Commit

Permalink
Apply bcftools fix to both rounds of consensus building
Browse files Browse the repository at this point in the history
  • Loading branch information
BioWilko committed Sep 3, 2024
1 parent a574880 commit 73a2b45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/illumina.nf
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ process callConsensusFreebayes {
done
# apply ambiguous variants first using IUPAC codes. this variant set cannot contain indels or the subsequent step will break
bcftools consensus -f ${ref} -I ${sampleName}.ambiguous.norm.vcf.gz > ${sampleName}.ambiguous.fa
bcftools consensus -s - -f ${ref} -I ${sampleName}.ambiguous.norm.vcf.gz > ${sampleName}.ambiguous.fa
# Get viral contig name from reference
CTG_NAME=\$(head -n1 ${ref} | sed 's/>//')
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ manifest {
description = 'Epi2me compatible Nextflow pipeline for processing ARTIC tiling amplicon Illumina sequencing reads from monkeypox virus (MPXV) samples.'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
version = '1.0.12'
version = '1.0.13'
}

// Load base.config by default for all pipelines
Expand Down

0 comments on commit 73a2b45

Please sign in to comment.