diff --git a/modules/local/deseq2_qc/tests/main.nf.test b/modules/local/deseq2_qc/tests/main.nf.test index 54bd97d77..f9319edab 100644 --- a/modules/local/deseq2_qc/tests/main.nf.test +++ b/modules/local/deseq2_qc/tests/main.nf.test @@ -9,9 +9,9 @@ nextflow_process { when { process { """ - input[0] = file(params.pipelines_testdata_base_path + "/deseq2qc/countFile.tsv", checkIfExists: true) - input[1] = file(params.pipelines_testdata_base_path + "/deseq2qc/deseq2_pca_header.txt", checkIfExists: true) - input[2] = file(params.pipelines_testdata_base_path + "/deseq2qc/deseq2_clustering_header.txt", checkIfExists: true) + input[0] = file(params.pipelines_testdata_base_path + "deseq2qc/countFile.tsv", checkIfExists: true) + input[1] = file(params.pipelines_testdata_base_path + "deseq2qc/deseq2_pca_header.txt", checkIfExists: true) + input[2] = file(params.pipelines_testdata_base_path + "deseq2qc/deseq2_clustering_header.txt", checkIfExists: true) """ } }