mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 05:29:54 +00:00
Fix motu versions not being exported if not run
This commit is contained in:
parent
d8c0e9e7fe
commit
c22946cfab
1 changed files with 1 additions and 2 deletions
|
@ -227,13 +227,12 @@ workflow PROFILING {
|
|||
MOTUS_PROFILE ( ch_input_for_motus.reads, ch_input_for_motus.db )
|
||||
ch_versions = ch_versions.mix( MOTUS_PROFILE.out.versions.first() )
|
||||
ch_raw_profiles = ch_raw_profiles.mix( MOTUS_PROFILE.out.out )
|
||||
|
||||
}
|
||||
|
||||
emit:
|
||||
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 = MOTUS_PROFILE.out.versions.first()
|
||||
motu_version = params.run_motus ? MOTUS_PROFILE.out.versions.first() : Channel.empty([])
|
||||
mqc = ch_multiqc_files
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue