Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add nf-prov #41

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- dev
- 14-cicd-test-integration
- master
pull_request:
release:
types: [published]
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
# Nextflow versions: check pipeline minimum and current latest
nxf_ver: ["22.10.6"]
nxf_ver: ["23.10.3"]
steps:
- name: Check out pipeline code
uses: actions/checkout@v3
Expand Down
24 changes: 15 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
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).

**Full Changelog**: https://github.com/ghga-de/nf-snvcalling/compare/v1.0...v2.0.0
## v1.0dev - [date]

Initial release of ghga-de/nf-snvcalling, created with the [nf-core](https://nf-co.re/) template.

### `Added`

### `Fixed`

### `Dependencies`

### `Deprecated`

## v2.0.0 - 24.06.2024

### `Added`
Expand Down Expand Up @@ -52,15 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* re-arrange resources for dkfz cluster by @kubranarci in https://github.com/ghga-de/nf-snvcalling/pull/34
* 35 raw vcf is not sorted by @kubranarci in https://github.com/ghga-de/nf-snvcalling/pull/36

**Full Changelog**: https://github.com/ghga-de/nf-snvcalling/compare/v1.0...v2.0.0
## v1.0dev - [date]

Initial release of ghga-de/nf-snvcalling, created with the [nf-core](https://nf-co.re/) template.
## v2.0.1 - 09.10.2024

### `Added`

### `Fixed`

### `Dependencies`

### `Deprecated`
- nf-prov plugin is added.
Binary file modified bin/vcfparser.pyc
Binary file not shown.
25 changes: 19 additions & 6 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -264,29 +264,42 @@ process.shell = ['/bin/bash', '-euo', 'pipefail']
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.tracedir}/execution_timeline_${trace_timestamp}.html"
file = "${params.tracedir}/pipeline_info/execution_timeline_${trace_timestamp}.html"
}
report {
enabled = true
file = "${params.tracedir}/execution_report_${trace_timestamp}.html"
file = "${params.tracedir}/pipeline_info/execution_report_${trace_timestamp}.html"
}
trace {
enabled = true
file = "${params.tracedir}/execution_trace_${trace_timestamp}.txt"
file = "${params.tracedir}/pipeline_info/execution_trace_${trace_timestamp}.txt"
}
dag {
enabled = true
file = "${params.tracedir}/pipeline_dag_${trace_timestamp}.html"
file = "${params.tracedir}/pipeline_info/pipeline_dag_${trace_timestamp}.html"
}
prov
{
enabled = true
formats {
bco {
file = "${params.outdir}/pipeline_info/manifest_${trace_timestamp}.bco.json"
}
}
}

manifest {
name = 'nf-snvcalling'
author = 'Kuebra Narci kuebra.narci@dkfz-heidelberg.de'
homePage = 'https://github.com/kubranarci/nf-snvcalling'
description = 'ODCF SNV Calling pipeline'
mainScript = 'main.nf'
nextflowVersion = '!>=21.10.3'
version = '1.0dev'
nextflowVersion = '!>=23.10.3'
version = '2.0.1'
}
// Nextflow plugins
plugins {
id 'nf-prov@1.2.2' // Provenance reports for pipeline runs
}

// Load modules.config for DSL2 module specific options
Expand Down
Loading