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

Patch vcf2db #257

Merged
merged 5 commits into from
Jan 23, 2025
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
52 changes: 26 additions & 26 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@ bump_version:
lint:
actions_ci: false
files_exist:
- CODE_OF_CONDUCT.md
- assets/nf-core-germline_logo_light.png
- docs/images/nf-core-germline_logo_light.png
- docs/images/nf-core-germline_logo_dark.png
- .github/ISSUE_TEMPLATE/config.yml
- .github/workflows/awstest.yml
- .github/workflows/awsfulltest.yml
- .github/workflows/template_version_comment.yml
- docs/README.md
- CODE_OF_CONDUCT.md
- assets/nf-core-germline_logo_light.png
- docs/images/nf-core-germline_logo_light.png
- docs/images/nf-core-germline_logo_dark.png
- .github/ISSUE_TEMPLATE/config.yml
- .github/workflows/awstest.yml
- .github/workflows/awsfulltest.yml
- .github/workflows/template_version_comment.yml
- docs/README.md
files_unchanged:
- .github/CONTRIBUTING.md
- .github/PULL_REQUEST_TEMPLATE.md
- .github/workflows/branch.yml
- .github/workflows/linting_comment.yml
- .github/workflows/linting.yml
- CODE_OF_CONDUCT.md
- .github/ISSUE_TEMPLATE/bug_report.yml
- .prettierignore
- .github/CONTRIBUTING.md
- .github/PULL_REQUEST_TEMPLATE.md
- .github/workflows/branch.yml
- .github/workflows/linting_comment.yml
- .github/workflows/linting.yml
- CODE_OF_CONDUCT.md
- .github/ISSUE_TEMPLATE/bug_report.yml
- .prettierignore
multiqc_config:
- report_comment
- report_comment
nextflow_config:
- custom_config
- manifest.name
- manifest.homePage
- validation.help.afterText
- validation.summary.afterText
- custom_config
- manifest.name
- manifest.homePage
- validation.help.afterText
- validation.summary.afterText
subworkflow_changes: false
nf_core_version: 3.0.2
repository_type: pipeline
Expand All @@ -41,6 +41,6 @@ template:
org: nf-cmgg
outdir: .
skip_features:
- fastqc
- is_nfcore
version: 1.10.0dev
- fastqc
- is_nfcore
version: 1.9.3
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## v1.10.0dev

## v1.9.3 Nifty Nieuwkerke - [January 23 2025]

1. Fix db postprocess in vcf2db module

## v1.9.2 - New Nieuwkerke - [January 22 2025]

## Changes
Expand Down
6 changes: 6 additions & 0 deletions modules/nf-core/vcf2db/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions modules/nf-core/vcf2db/vcf2db.diff

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ manifest {
description = """A nextflow pipeline for calling and annotating small germline variants from short DNA reads for WES and WGS data"""
mainScript = 'main.nf'
nextflowVersion = '!>=24.10.0'
version = '1.10.0dev'
version = '1.9.3'
doi = ''
}

Expand Down
Loading