Skip to content

Commit

Permalink
Add testcase for VCF 4.3 and indels
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Oct 4, 2024
1 parent 4f76865 commit abfe287
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Binary file not shown.
20 changes: 20 additions & 0 deletions tests/main.qc.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,26 @@ nextflow_pipeline {

}

test("Should run QC-only including VCF 4.3 and indels") {

when {
params {
project = "test-job"
build = "hg19"
files = "$projectDir/tests/data/input/chr20-phased/with_indels/*.vcf.gz"
allele_frequency_population = "eur"
mode = "qc-only"
refpanel_yaml = "$projectDir/tests/data/refpanels/hapmap2-hg38/cloudgene.yaml"
output = "${outputDir}"
}
}

then {
assert workflow.success
}

}

test("Should fail QC-only but publish files") {

when {
Expand Down

0 comments on commit abfe287

Please sign in to comment.