1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-22 10:19:54 +00:00

Fix .empty

This commit is contained in:
James Fellows Yates 2022-07-13 12:44:44 +02:00
parent c22946cfab
commit 13280e2468

View file

@ -233,6 +233,6 @@ workflow PROFILING {
classifications = ch_raw_classifications
profiles = ch_raw_profiles // channel: [ val(meta), [ reads ] ] - should be text files or biom
versions = ch_versions // channel: [ versions.yml ]
motu_version = params.run_motus ? MOTUS_PROFILE.out.versions.first() : Channel.empty([])
motu_version = params.run_motus ? MOTUS_PROFILE.out.versions.first() : Channel.empty()
mqc = ch_multiqc_files
}