File tree 1 file changed +4
-5
lines changed
Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina-B/workflow_code/modules
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ nextflow.enable.dsl = 2
11
11
12
12
process ANCOMBC {
13
13
14
- tag " Running ANCOMBC ${ params.ancombc_version} for differential abundance testing"
14
+ tag " Running ANCOMBC ${ params.ancombc_version} for differential abundance testing... "
15
15
16
16
input:
17
17
tuple val(group), val(samples_column)
@@ -21,15 +21,14 @@ process ANCOMBC {
21
21
22
22
output:
23
23
path(" Plots/" ), emit: plots
24
- path(" differential_abundance_ ${ params.assay_suffix} .csv" ), emit: table
24
+ path(" differential_abundance ${ params.assay_suffix} .csv" ), emit: table
25
25
path(" versions.txt" ), emit: version
26
26
27
27
script:
28
28
def script_name = params. ancombc_version == 1 ? " pairwise_ancombc1.R" : " pairwise_ancombc2.R"
29
29
"""
30
- cp `which ${ script_name} ` . && chmod +x ./${ script_name}
31
- Rscript ./${ script_name} \\
32
- --out-file "differential_abundance_${ params.assay_suffix} .csv" \\
30
+ ${ script_name} \\
31
+ --out-file "differential_abundance${ params.assay_suffix} .csv" \\
33
32
--metadata-table '${ metadata} ' \\
34
33
--feature-table '${ asv_table} ' \\
35
34
--taxonomy-table '${ taxonomy} ' \\
You can’t perform that action at this time.
0 commit comments