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

Merge branch 'dev' into motus/merge

This commit is contained in:
James A. Fellows Yates 2022-07-15 10:52:42 +02:00 committed by GitHub
commit c215ed5607
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View file

@ -15,6 +15,7 @@ process MOTUS_PROFILE {
tuple val(meta), path("*.out"), emit: out tuple val(meta), path("*.out"), emit: out
tuple val(meta), path("*.bam"), optional: true, emit: bam tuple val(meta), path("*.bam"), optional: true, emit: bam
tuple val(meta), path("*.mgc"), optional: true, emit: mgc tuple val(meta), path("*.mgc"), optional: true, emit: mgc
tuple val(meta), path("*.log") , emit: log
path "versions.yml" , emit: versions path "versions.yml" , emit: versions
when: when:
@ -36,7 +37,8 @@ process MOTUS_PROFILE {
$refdb \\ $refdb \\
-t $task.cpus \\ -t $task.cpus \\
-n $prefix \\ -n $prefix \\
-o ${prefix}.out -o ${prefix}.out \\
2> ${prefix}.log
## mOTUs version number is not available from command line. ## mOTUs version number is not available from command line.
## mOTUs save the version number in index database folder. ## mOTUs save the version number in index database folder.

View file

@ -56,6 +56,10 @@ output:
type: file type: file
description: Optional intermediate mgc read count table file saved with `-M`. description: Optional intermediate mgc read count table file saved with `-M`.
pattern: "*.{mgc}" pattern: "*.{mgc}"
- log:
type: file
description: Standard error logging file containing summary statistics
pattern: "*.log"
authors: authors:
- "@jianhong" - "@jianhong"

View file

@ -227,6 +227,7 @@ workflow PROFILING {
MOTUS_PROFILE ( ch_input_for_motus.reads, ch_input_for_motus.db ) MOTUS_PROFILE ( ch_input_for_motus.reads, ch_input_for_motus.db )
ch_versions = ch_versions.mix( MOTUS_PROFILE.out.versions.first() ) ch_versions = ch_versions.mix( MOTUS_PROFILE.out.versions.first() )
ch_raw_profiles = ch_raw_profiles.mix( MOTUS_PROFILE.out.out ) ch_raw_profiles = ch_raw_profiles.mix( MOTUS_PROFILE.out.out )
ch_multiqc_files = ch_multiqc_files.mix( MOTUS_PROFILE.out.log.map{it[1]} )
} }
emit: emit: