Skip to content

Commit

Permalink
Fix: Change folder hierarchy in group and normalize modules
Browse files Browse the repository at this point in the history
tax_level will no longer be used in the folder hierarchy
  • Loading branch information
dileep-kishore committed Nov 12, 2021
1 parent b2330ba commit ebee568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion micone/pipelines/modules/otu_processing/export/biom2tsv.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include { getHierarchy; updateMeta } from '../../../functions/functions.nf'
process biom2tsv {
label 'micone'
tag "${new_meta.id}"
publishDir "${params.output_dir}/${f[0]}/export/${f[1]}/${directory}/${tax_level}/${new_meta.id}",
publishDir "${params.output_dir}/${f[0]}/export/${f[1]}/${directory}/${new_meta.id}",
mode: 'copy',
overwrite: true
input:
Expand Down
2 changes: 1 addition & 1 deletion micone/pipelines/modules/otu_processing/transform/group.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include { getHierarchy; updateMeta } from '../../../functions/functions.nf'
process group {
label 'micone'
tag "${meta.id}:${tax_level}"
publishDir "${params.output_dir}/${f[0]}/transform/${f[1]}/${directory}/${tax_level}/${new_meta.id}",
publishDir "${params.output_dir}/${f[0]}/transform/${f[1]}/${directory}/${new_meta.id}",
mode: 'copy',
overwrite: true
input:
Expand Down

0 comments on commit ebee568

Please sign in to comment.