Skip to content

Commit

Permalink
Merge pull request #318 from drpatelh/sync
Browse files Browse the repository at this point in the history
Fix #316
  • Loading branch information
drpatelh committed Jul 13, 2022
2 parents 429a5ff + f7f8165 commit 74ee2b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [[#304](https://github.com/nf-core/viralrecon/pull/304)] - Re-factor code of `ivar_variants_to_vcf` script
- [[#306](https://github.com/nf-core/viralrecon/issues/306)] - Add contig field information in vcf header in ivar_variants_to_vcf and use bcftools sort
- [[#311](https://github.com/nf-core/viralrecon/issues/311)] - Invalid declaration val medaka_model_string
- [[#316](https://github.com/nf-core/viralrecon/issues/316)] - Variant calling isn't run when using --skip_asciigenome with metagenomic data
- [[nf-core/rnaseq#764](https://github.com/nf-core/rnaseq/issues/764)] - Test fails when using GCP due to missing tools in the basic biocontainer
- Updated pipeline template to [nf-core/tools 2.4.1](https://github.com/nf-core/tools/releases/tag/2.4.1)

Expand Down
6 changes: 3 additions & 3 deletions workflows/illumina.nf
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ workflow ILLUMINA {
VARIANTS_IVAR (
ch_bam,
PREPARE_GENOME.out.fasta,
PREPARE_GENOME.out.fai,
PREPARE_GENOME.out.chrom_sizes,
(params.protocol == 'amplicon' || !params.skip_asciigenome) ? PREPARE_GENOME.out.fai : [],
(params.protocol == 'amplicon' || !params.skip_asciigenome) ? PREPARE_GENOME.out.chrom_sizes : [],
PREPARE_GENOME.out.gff,
(params.protocol == 'amplicon' && params.primer_bed) ? PREPARE_GENOME.out.primer_bed : [],
PREPARE_GENOME.out.snpeff_db,
Expand All @@ -439,7 +439,7 @@ workflow ILLUMINA {
VARIANTS_BCFTOOLS (
ch_bam,
PREPARE_GENOME.out.fasta,
PREPARE_GENOME.out.chrom_sizes,
(params.protocol == 'amplicon' || !params.skip_asciigenome) ? PREPARE_GENOME.out.chrom_sizes : [],
PREPARE_GENOME.out.gff,
(params.protocol == 'amplicon' && params.primer_bed) ? PREPARE_GENOME.out.primer_bed : [],
PREPARE_GENOME.out.snpeff_db,
Expand Down

0 comments on commit 74ee2b6

Please sign in to comment.