Skip to content

Commit

Permalink
Fix info filename
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Oct 1, 2024
1 parent ede591a commit 43d5cc0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/main.imputation.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ nextflow_pipeline {
assert variantCount == TOTAL_REFPANEL_CHR20_B37 + ONLY_IN_INPUT
}

with(zip.extract("chr20.info.gz").vcf) {
with(zip.extract("chr20.info.vcf.gz").vcf) {
assert variantCount == TOTAL_REFPANEL_CHR20_B37 + ONLY_IN_INPUT
}

Expand Down Expand Up @@ -110,7 +110,7 @@ nextflow_pipeline {
assert variantCount == 7735
}

with(zip.extract("chr20.info.gz").vcf) {
with(zip.extract("chr20.info.vcf.gz").vcf) {
assert variantCount == TOTAL_REFPANEL_CHR20_B37 + ONLY_IN_INPUT
}

Expand Down Expand Up @@ -183,7 +183,7 @@ nextflow_pipeline {
assert variantCount == TOTAL_REFPANEL_CHR20_B37 + ONLY_IN_INPUT
}

with(zip.extract("chr20.info.gz").vcf) {
with(zip.extract("chr20.info.vcf.gz").vcf) {
assert variantCount == TOTAL_REFPANEL_CHR20_B37 + ONLY_IN_INPUT
}

Expand Down Expand Up @@ -231,7 +231,7 @@ nextflow_pipeline {
assert variantCount == TOTAL_REFPANEL_CHR20_B37
}

with(zip.extract("chr20.info.gz").vcf) {
with(zip.extract("chr20.info.vcf.gz").vcf) {
assert variantCount == TOTAL_REFPANEL_CHR20_B37
}

Expand Down Expand Up @@ -278,7 +278,7 @@ nextflow_pipeline {
assert variantCount == TOTAL_REFPANEL_CHR20_B37
}

with(path("${outputDir}/chr20.info.gz").vcf) {
with(path("${outputDir}/chr20.info.vcf.gz").vcf) {
assert variantCount == TOTAL_REFPANEL_CHR20_B37
}

Expand Down Expand Up @@ -327,7 +327,7 @@ nextflow_pipeline {
assert variantCount == TOTAL_REFPANEL_CHR20_B37
}

with(zip.extract("chr20.info.gz").vcf) {
with(zip.extract("chr20.info.vcf.gz").vcf) {
assert variantCount == TOTAL_REFPANEL_CHR20_B37
}

Expand Down Expand Up @@ -422,7 +422,7 @@ nextflow_pipeline {
assert variantCount < TOTAL_REFPANEL_CHR20_B37
}

with(zip.extract("chr20.info.gz").vcf) {
with(zip.extract("chr20.info.vcf.gz").vcf) {
assert variantCount == file.variantCount
}

Expand Down

0 comments on commit 43d5cc0

Please sign in to comment.