Skip to content

Commit

Permalink
tests_succesfull again
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaps-bot committed Sep 28, 2023
1 parent 324f9d0 commit afc931d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ params {
host_genome = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/genome/genome.fasta'
skip_complexity_filtering = false
trim_tool ='fastp'
assemblers ='spades,megahit'
assemblers ='spades,megahit,trinity'

skip_metagenomic_diversity = true
save_databases = true
Expand Down
7 changes: 6 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@
"fa_icon": "fas fa-bezier-curve",
"enum": [
"spades,trinity,megahit",
"megahit,trinity,spades",
"spades",
"trinity",
"megahit",
Expand All @@ -488,7 +489,11 @@
"megahit,spades",
"spades,megahit",
"trinity,spades",
"spades,trinity"
"spades,trinity",
"spades,megahit,trinity",
"megahit,spades,trinity",
"trinity,spades,megahit",
"trinity,megahit,spades"
],
"description": "The specified tools for denovo assembly, multiple options are possible"
},
Expand Down
5 changes: 1 addition & 4 deletions workflows/viralgenie.nf
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,12 @@ workflow VIRALGENIE {
FASTQ_SPADES_TRINITY_MEGAHIT
.out
.scaffolds
.branch{ meta, scaffolds,count ->
.branch{ meta, scaffolds ->
no_contigs: scaffolds.countFasta() == 0
any_contigs: scaffolds.countFasta() > 0
}
.set{ch_contigs}

ch_contigs.no_contigs.view()
ch_contigs.any_contigs.view()

if (!params.skip_polishing){
unpacked_references = UNPACK_DB_BLAST (params.reference_fasta).db
ch_versions = ch_versions.mix(UNPACK_DB_BLAST.out.versions)
Expand Down

0 comments on commit afc931d

Please sign in to comment.