Skip to content

Commit

Permalink
finalize stub test, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
DarianHole committed Jan 3, 2025
1 parent da53277 commit f30c373
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 8 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.2.0 - [2025-01-03]

### `Added`

- `nf-schema` plugin and associated functions
- Schemas
- Param summary, param help, version
- samplesheetToList
- `params.input <CSV>` to allow input samplesheets
- `iridanext` plugin
- The associated data will come out in 0.3.0
- Most of the required nf-core files
- CI tests and linting

### `Changed`

- Logic for input data
- Logic for skipping specific modules
- Allowed to skip el_gato ST
- Allowed to skip el_gato allele plotting

### `Updated`

- Usage and README docs for the input adjustments

## v0.1.0 - [Beta-Test-2024-11-29]

### `Added`
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ manifest {
description = """Legionella pneumophila WGS analysis"""
mainScript = "main.nf"
nextflowVersion = "!>=23.10.1"
version = "0.1.0"
version = "0.2.0"
doi = ""
defaultBranch = "main"
}
Expand Down
1 change: 1 addition & 0 deletions tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ nextflow_pipeline {
fastq_dir = "$baseDir/tests/test_data/"
outdir = "results"
min_reads = 0
kraken2_db = "./"
}
}
then {
Expand Down
12 changes: 5 additions & 7 deletions tests/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@
process {
resourceLimits = [
cpus: 2,
memory: '8.GB',
memory: '4.GB',
time: '2.h'
]
}

params {
// Limit resources for github actions
max_cpus = 1
max_memory = '8.GB'
max_time = '2.h'
}
// Limit resources for github actions
params.max_cpus = 2
params.max_memory = '4.GB'
params.max_time = '2.h'

0 comments on commit f30c373

Please sign in to comment.