Skip to content

Commit

Permalink
uodate docker and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
WhalleyT committed Sep 10, 2024
1 parent 1db1c64 commit 8d77a6b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
work/
singularity/*img
trace*

output/
outputs/
2 changes: 1 addition & 1 deletion docker/Dockerfile.ntmprofiler-0.9.9
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest| tar -xvj bin
# install tb-profiler via bioconda; install into 'base' conda env
RUN micromamba install --yes --name base --channel conda-forge --channel bioconda \
ntm-profiler=${NTMPROFILER_VER}

RUN micromamba install --yes --name base --channel conda-forge jq
# hardcode 'base' env bin into PATH, so conda env does not have to be "activated" at run time
ENV PATH="/opt/conda/bin:${PATH}"

Expand Down
4 changes: 2 additions & 2 deletions modules/vcfpredictModules.nf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ process ntmprofiler {
tuple val(sample_name), path(fq1), path(fq2), path(report_json), val(isSampleTB)

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

when:
Expand All @@ -137,7 +137,7 @@ process ntmprofiler {
mkdir tmp
ntm-profiler profile -1 $fq1 -2 $fq2 --threads ${task.cpus} --temp tmp --prefix ${sample_name}
cp ${sample_name}.results.josn ${ntmprofiler_json}
cp ${sample_name}.results.json ${ntmprofiler_json}
cp ${sample_name}_report.json ${sample_name}_report_previous.json
Expand Down
1 change: 1 addition & 0 deletions workflows/vcfpredict.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ include {tbtamr} from '../modules/vcfpredictModules.nf' params(params)
include {tbtamr_collate} from '../modules/vcfpredictModules.nf' params(params)
include {tbprofiler_collate} from '../modules/vcfpredictModules.nf' params(params)
include {ntmprofiler} from '../modules/vcfpredictModules.nf' params(params)
include {ntmprofiler_collate} from '../modules/vcfpredictModules.nf' params(params)
// define workflow component
workflow vcfpredict {

Expand Down

0 comments on commit 8d77a6b

Please sign in to comment.