Skip to content

Commit 8d77a6b

Browse files
committed
uodate docker and typos
1 parent 1db1c64 commit 8d77a6b

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
work/
44
singularity/*img
55
trace*
6-
6+
output/
7+
outputs/

docker/Dockerfile.ntmprofiler-0.9.9

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest| tar -xvj bin
4141
# install tb-profiler via bioconda; install into 'base' conda env
4242
RUN micromamba install --yes --name base --channel conda-forge --channel bioconda \
4343
ntm-profiler=${NTMPROFILER_VER}
44-
44+
RUN micromamba install --yes --name base --channel conda-forge jq
4545
# hardcode 'base' env bin into PATH, so conda env does not have to be "activated" at run time
4646
ENV PATH="/opt/conda/bin:${PATH}"
4747

modules/vcfpredictModules.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ process ntmprofiler {
123123
tuple val(sample_name), path(fq1), path(fq2), path(report_json), val(isSampleTB)
124124

125125
output:
126-
path("${sample_name}.ntmprofiler-out.json"), path("${sample_name}_report.json"), emit: ntmprofiler_json
126+
tuple val(sample_name), path("${sample_name}.ntmprofiler-out.json"), path("${sample_name}_report.json"), emit: ntmprofiler_json
127127
path("${sample_name}.results.json"), emit: collate_json
128128

129129
when:
@@ -137,7 +137,7 @@ process ntmprofiler {
137137
mkdir tmp
138138
ntm-profiler profile -1 $fq1 -2 $fq2 --threads ${task.cpus} --temp tmp --prefix ${sample_name}
139139
140-
cp ${sample_name}.results.josn ${ntmprofiler_json}
140+
cp ${sample_name}.results.json ${ntmprofiler_json}
141141
142142
cp ${sample_name}_report.json ${sample_name}_report_previous.json
143143

workflows/vcfpredict.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ include {tbtamr} from '../modules/vcfpredictModules.nf' params(params)
1111
include {tbtamr_collate} from '../modules/vcfpredictModules.nf' params(params)
1212
include {tbprofiler_collate} from '../modules/vcfpredictModules.nf' params(params)
1313
include {ntmprofiler} from '../modules/vcfpredictModules.nf' params(params)
14+
include {ntmprofiler_collate} from '../modules/vcfpredictModules.nf' params(params)
1415
// define workflow component
1516
workflow vcfpredict {
1617

0 commit comments

Comments
 (0)