@@ -8,15 +8,22 @@ nextflow_workflow {
88 when {
99 workflow {
1010 """
11- input[0] = Channel.of(
11+ // Input 0: counts channel with meta and RCC files
12+ input[0] = Channel.of([
13+ [ id: 'test_sample' ], // meta map
1214 [
13- file(params.pipelines_testdata_base_path + ' nanostring/RCC_files/salmon_01_01.RCC', checkIfExists: true),
14- file(params.pipelines_testdata_base_path + ' nanostring/RCC_files/salmon_02_02.RCC', checkIfExists: true),
15- file(params.pipelines_testdata_base_path + ' nanostring/RCC_files/salmon_03_03.RCC', checkIfExists: true),
16- file(params.pipelines_testdata_base_path + ' nanostring/RCC_files/salmon_04_04.RCC', checkIfExists: true)
15+ file('https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/ nanostring/RCC_files/salmon_01_01.RCC', checkIfExists: true),
16+ file('https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/ nanostring/RCC_files/salmon_02_02.RCC', checkIfExists: true),
17+ file('https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/ nanostring/RCC_files/salmon_03_03.RCC', checkIfExists: true),
18+ file('https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/ nanostring/RCC_files/salmon_04_04.RCC', checkIfExists: true)
1719 ]
18- )
19- input[1] = file(params.pipelines_testdata_base_path + 'nanostring/samplesheets/samplesheet_test.csv', checkIfExists: true)
20+ ])
21+
22+ // Input 1: samplesheet channel with meta and file
23+ input[1] = Channel.of([
24+ [ id: 'test_samplesheet' ], // meta map
25+ file('https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/nanostring/samplesheets/samplesheet_test.csv', checkIfExists: true)
26+ ])
2027 """
2128 }
2229 }
0 commit comments