Skip to content

Commit

Permalink
Update to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjameskennedy committed Aug 30, 2024
1 parent f4b02b7 commit 46382bf
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Fixed

### Changed

## [0.9.0]

### Added

- Added long-read test data (S. aureus)
- Added `samplelist_nanopore.csv` for running long-read test data
- Added location of documentation to `README`
Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.base.config
Original file line number Diff line number Diff line change
Expand Up @@ -313,5 +313,5 @@ manifest {
homePage = 'https://github.com/genomic-medicine-sweden/jasen'
description = 'Pipeline epitypes numerous bacterial species as well as identifies AMR and virulence genes'
mainScript = 'main.nf'
version = '0.8.0'
version = '0.9.0'
}
2 changes: 1 addition & 1 deletion configs/nextflow.ci.config
Original file line number Diff line number Diff line change
Expand Up @@ -296,5 +296,5 @@ manifest {
homePage = 'https://github.com/genomic-medicine-sweden/jasen'
description = 'Pipeline epitypes numerous bacterial species as well as identifies AMR and virulence genes'
mainScript = 'main.nf'
version = '0.8.0'
version = '0.9.0'
}
2 changes: 1 addition & 1 deletion configs/nextflow.dev.config
Original file line number Diff line number Diff line change
Expand Up @@ -296,5 +296,5 @@ manifest {
homePage = 'https://github.com/genomic-medicine-sweden/jasen'
description = 'Pipeline epitypes numerous bacterial species as well as identifies AMR and virulence genes'
mainScript = 'main.nf'
version = '0.8.0'
version = '0.9.0'
}
12 changes: 6 additions & 6 deletions configs/nextflow.hopper.config
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,15 @@ process {
publishDir = [ [ path: "/fs1/results/cron/jasen/${params.speciesDir}", mode: 'copy', overwrite: true, pattern: '*.json' ], [ path: "/fs1/results/cron/qc", mode: 'copy', overwrite: true, pattern: '*.cdmpy' ] ]
}
withName: create_analysis_result {
container = "docker://clinicalgenomicslund/bonsai-prp:0.9.3"
container = "docker://clinicalgenomicslund/bonsai-prp:0.10.0"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_result", mode: 'copy', overwrite: true ]
}
withName: create_cdm_input {
container = "docker://clinicalgenomicslund/bonsai-prp:0.9.3"
container = "docker://clinicalgenomicslund/bonsai-prp:0.10.0"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/${params.cdmDir}", mode: 'copy', overwrite: true ]
}
withName: create_yaml {
container = "docker://clinicalgenomicslund/bonsai-prp:0.9.3"
container = "docker://clinicalgenomicslund/bonsai-prp:0.10.0"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_yaml", 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 @@ -223,7 +223,7 @@ process {
}
withName: post_align_qc {
memory = '2 GB'
container = "docker://clinicalgenomicslund/bonsai-prp:0.9.3"
container = "docker://clinicalgenomicslund/bonsai-prp:0.10.0"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/postalignqc", mode: 'copy', overwrite: true ]
}
withName: quast {
Expand All @@ -246,7 +246,7 @@ process {
publishDir = [ path: "${params.outdir}/${params.speciesDir}/${params.bamDir}", mode: 'copy', overwrite: true ]
}
withName: save_analysis_metadata {
container = "docker://clinicalgenomicslund/bonsai-prp:0.9.3"
container = "docker://clinicalgenomicslund/bonsai-prp:0.10.0"
publishDir = [ path: "${params.outdir}/${params.speciesDir}/analysis_metadata", mode: 'copy', overwrite: true ]
}
withName: serotypefinder {
Expand Down Expand Up @@ -311,5 +311,5 @@ manifest {
homePage = 'https://github.com/genomic-medicine-sweden/jasen'
description = 'Pipeline epitypes numerous bacterial species as well as identifies AMR and virulence genes'
mainScript = 'main.nf'
version = '0.8.0'
version = '0.9.0'
}
2 changes: 1 addition & 1 deletion configs/nextflow.ngp.config
Original file line number Diff line number Diff line change
Expand Up @@ -321,5 +321,5 @@ manifest {
homePage = 'https://github.com/genomic-medicine-sweden/jasen'
description = 'Pipeline epitypes numerous bacterial species as well as identifies AMR and virulence genes'
mainScript = 'main.nf'
version = '0.8.0'
version = '0.9.0'
}

0 comments on commit 46382bf

Please sign in to comment.