From b0ae907285589d5a15536c998639926b1fa7fb7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Sch=C3=B6nherr?= Date: Mon, 17 Jun 2024 18:39:28 +0200 Subject: [PATCH] Fix script and data location --- tests/microarray.nf.test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/microarray.nf.test b/tests/microarray.nf.test index ee09e1b..f380d52 100644 --- a/tests/microarray.nf.test +++ b/tests/microarray.nf.test @@ -1,7 +1,7 @@ nextflow_pipeline { name "Test Workflow main.nf" - script "workflows/simulation.nf" + script "main.nf" test("Microarray chip simulation DNA hg19") { @@ -59,8 +59,8 @@ nextflow_pipeline { when { params { project = "r2_calculation_hg19" - workflow_name = "r2" - strand_data = "$projectDir/tests/data/imputed_data/hg19/*strand" + workflow_name = "r2" + imputed_data = "$projectDir/tests/data/imputed_data/hg19/*vcf.gz" sequence_data = "$projectDir/tests/data/sequence_data/hg19/*vcf.gz" } }