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

Dsl2 multivcfanalyzer #1096

Draft
wants to merge 4 commits into
base: dev
Choose a base branch
from
Draft
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
7 changes: 7 additions & 0 deletions assets/schema_fasta.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@
"exists": true,
"errorMessage": "SNP annotation files for GATK must not contain any spaces and have file extension '.vcf'."
}
"consensus_multivcfanalyzer_additional_vcf_files": {
"type": "string",
"format": "directory-path",
"pattern": "^\\S+$",
"exists": true,
"errorMessage": "The directory containing the additional vcf files for multivcfanalyzer must not contain any spaces and have file extensions ''."
}
},
"required": ["reference_name", "fasta"]
}
Expand Down
11 changes: 11 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -1399,4 +1399,15 @@ process {
pattern: '*.{glf,beagle}.gz'
]
}

withName: MULTIVCFANALYZER {
tag = { "${meta.reference}" }
ext.prefix = { "multivcfanalyzer_${meta.reference}" }
publishDir = [
path: { "${params.outdir}/consensus_sequence/" },
mode: params.publish_dir_mode,
enabled: true,
pattern: '*.{fasta.gz,tsv,txt}'
]
}
}
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,11 @@
"git_sha": "b7ebe95761cd389603f9cc0e0dc384c0f663815a",
"installed_by": ["modules"]
},
"multivcfanalyzer": {
"branch": "master",
"git_sha": "b34fb117e397e72a070cde8adf21b758670c90f5",
"installed_by": ["modules"]
},
"picard/createsequencedictionary": {
"branch": "master",
"git_sha": "20b0918591d4ba20047d7e13e5094bcceba81447",
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/multivcfanalyzer/environment.yml

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

100 changes: 100 additions & 0 deletions modules/nf-core/multivcfanalyzer/main.nf

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

120 changes: 120 additions & 0 deletions modules/nf-core/multivcfanalyzer/meta.yml

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

Loading
Loading