Skip to content

Commit

Permalink
Add: getHierarchy include statement to all process files
Browse files Browse the repository at this point in the history
  • Loading branch information
dileep-kishore committed May 22, 2021
1 parent ad3f9de commit cce84f5
Show file tree
Hide file tree
Showing 22 changed files with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Step3: Export files
process export_files {
label 'qiime2'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Step3: Replace the ids with the hashes of the sequences
process hashing2 {
label 'qiime1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Step3: Replace the ids with hashes of the sequences
process hashing3 {
label 'dada2'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Export the sequences and fix the manifest file
process export_sequences {
label 'qiime2'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Join reads
process join_reads {
label 'qiime1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Identify positions on the front and the tail that need to be trimmed based on
// a. quality and b. sequence retainment
process quality_analysis {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Trimming the sequences using cutadapt
process trimming {
label 'qiime2'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process pvalues {
label 'sparcc'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process pearson {
label 'micone'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process propr {
label 'propr'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process sparcc {
label 'sparcc'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process spearman {
label 'micone'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process export_gml {
label 'flashweave'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process flashweave {
label 'flashweave'
tag "${meta.id}"
Expand Down
2 changes: 2 additions & 0 deletions micone/pipelines/modules/network_inference/direct/mldm.nf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process mldm {
label 'mldm'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process spieceasi {
label 'spieceasi'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process make_network_with_pvalue {
label 'micone'
tag "${meta.id}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process make_network_without_pvalue {
label 'micone'
tag "${meta.id}"
Expand Down
2 changes: 2 additions & 0 deletions micone/pipelines/modules/otu_processing/export/biom2tsv.nf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process biom2tsv {
label 'micone'
tag "${meta.id}"
Expand Down
2 changes: 2 additions & 0 deletions micone/pipelines/modules/otu_processing/transform/group.nf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process group {
label 'micone'
tag "${meta.id}:${tax_level}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

process normalize {
label 'micone'
tag "${meta.id}"
Expand Down
2 changes: 2 additions & 0 deletions micone/pipelines/modules/tax_assignment/assign/add_md2biom.nf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include { getHierarchy } from ='../../../functions/functions.nf'

// Attach the observation and sample metadata to the OTU table
process add_md2biom {
label 'qiime2'
Expand Down

0 comments on commit cce84f5

Please sign in to comment.