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

Change platform description and update vcf2cytosure conditional #607

Merged
merged 1 commit into from
Sep 11, 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
9 changes: 4 additions & 5 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -485,9 +485,9 @@
"analysis_type": {
"type": "string",
"default": "wgs",
"description": "Specifies which analysis type for the pipeline- either 'wgs','wes','mito'. This changes resources consumed and tools used.",
"description": "Specifies which analysis type for the pipeline- either 'wgs' or 'wes'. This changes resources consumed and tools used.",
"fa_icon": "fas fa-align-center",
"enum": ["wgs", "wes", "mito"]
"enum": ["wgs", "wes"]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch!

},
"bwa_as_fallback": {
"type": "boolean",
Expand All @@ -498,9 +498,8 @@
"platform": {
"type": "string",
"default": "illumina",
"description": "Specifies which analysis type for the pipeline- either 'wgs','wes','mito'. This changes resources consumed and tools used.",
"fa_icon": "fas fa-align-center",
"enum": ["illumina"]
"description": "Specifies the platform on which the reads were sequenced.",
"fa_icon": "fas fa-align-center"
},
"ngsbits_samplegender_method": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion workflows/raredisease.nf
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ workflow RAREDISEASE {
Generate CGH files from sequencing data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
if ( !params.skip_vcf2cytosure && params.analysis_type.equals("wgs") && !params.skip_sv_calling) {
if ( !params.skip_vcf2cytosure && params.analysis_type.equals("wgs") && !params.skip_sv_calling && !params.skip_sv_annotation) {
GENERATE_CYTOSURE_FILES (
ch_sv_annotate.vcf_ann,
ch_sv_annotate.tbi,
Expand Down