Skip to content

Commit

Permalink
Merge pull request #367 from genomic-medicine-sweden/update-prp-to-v0…
Browse files Browse the repository at this point in the history
….11.1

Update prp to v0.11.1
  • Loading branch information
ryanjameskennedy authored Nov 11, 2024
2 parents 257bcbd + 5943956 commit 5686e0d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Moved taxon related methods to methods directory
- Changed spyogenes genome from GCF_900475035.1 to GCF_000006785.2
- Changed `containerDir` filepath for Lund configs
- Updated PRP to version 0.11.0
- Update `configs/nextflow.dev.config` root fpath
- Changed the freebayes output directory
- Remove `copy_to_cron` module
- Updated PRP to version 0.11.1

## [0.9.0]

Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.base.config
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ process {
ext.args_ska = {"${params.outdir}/${params.speciesDir}/ska"}
}
withName: emmtyper {
container = "https://depot.galaxyproject.org/singularity/emmtyper:0.2.0--py_0"
container = "${params.containerDir}/emmtyper.sif"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/emmtyper", mode: 'copy', overwrite: true ]
}
withName: export_to_cdm {
Expand Down
14 changes: 7 additions & 7 deletions configs/nextflow.hopper.config
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ process {
cpus=2

withName: add_igv_track {
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_result", mode: 'copy', overwrite: true ]
}
withName: amrfinderplus {
Expand All @@ -161,7 +161,7 @@ process {
ext.args = "--plus"
}
withName: annotate_delly {
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/${params.vcfDir}", mode: 'copy', overwrite: true ]
}
withName: assembly_trim_clean {
Expand Down Expand Up @@ -204,15 +204,15 @@ process {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/chewbbaca", mode: 'copy', overwrite: true ]
}
withName: create_analysis_result {
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_result", mode: 'copy', overwrite: true ]
}
withName: create_cdm_input {
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/${params.cdmDir}", mode: 'copy', overwrite: true ]
}
withName: create_yaml {
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ [ path: "${params.outdir}/${params.speciesDir}/analysis_yaml", mode: 'copy', overwrite: true ] ] + (params.cronCopy ? [ [ path: "/fs1/results/cron/jasen/${params.speciesDir}", mode: 'copy', overwrite: true ] ] : [])
ext.args_prp = {"${params.outdir}/${params.speciesDir}/analysis_result"}
ext.args_sourmash = {"${params.outdir}/${params.speciesDir}/sourmash"}
Expand Down Expand Up @@ -268,7 +268,7 @@ process {
}
withName: post_align_qc {
memory = '2 GB'
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/postalignqc", mode: 'copy', overwrite: true ]
}
withName: quast {
Expand All @@ -291,7 +291,7 @@ process {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/${params.bamDir}", mode: 'copy', overwrite: true ]
}
withName: save_analysis_metadata {
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.0"
container = "docker://clinicalgenomicslund/bonsai-prp:0.11.1"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_metadata", mode: 'copy', overwrite: true ]
}
withName: seqtk_sample {
Expand Down
6 changes: 3 additions & 3 deletions container/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ remote_containers := ncbi-amrfinderplus.sif \
blast.sif \
bracken.sif \
bwakit.sif \
emmtyper.sif \
chewbbaca.sif \
freebayes.sif \
emmtyper.sif \
flye.sif \
freebayes.sif \
kraken2.sif \
medaka.sif \
mlst.sif \
Expand All @@ -45,7 +45,7 @@ remote_containers := ncbi-amrfinderplus.sif \
virulencefinder.sif

# URLs to Docker containers
DOCKER_bonsai-prp := docker://clinicalgenomicslund/bonsai-prp:0.11.0
DOCKER_bonsai-prp := docker://clinicalgenomicslund/bonsai-prp:0.11.1

# URLs to remote containers
URL_ncbi-amrfinderplus := https://depot.galaxyproject.org/singularity/ncbi-amrfinderplus:3.11.11--h6e70893_0
Expand Down

0 comments on commit 5686e0d

Please sign in to comment.