Skip to content

Commit 136dd1c

Browse files
authored
Merge branch 'dev' into concurrency_error_in_ci_pipeline
2 parents a5b7b74 + 0460f9c commit 136dd1c

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
nextflow_process {
2+
3+
name "Test Process GTF_FILTER"
4+
script "../main.nf"
5+
process "GTF_FILTER"
6+
7+
test("Should run without failures") {
8+
9+
when {
10+
process {
11+
"""
12+
input[0] = file(params.modules_testdata_base_path + 'genomics/sarscov2/genome/genome.fasta', checkIfExists: true)
13+
input[1] = file(params.modules_testdata_base_path + 'genomics/sarscov2/genome/genome.gtf', checkIfExists: true)
14+
"""
15+
}
16+
}
17+
18+
then {
19+
assertAll(
20+
{ assert process.success },
21+
{ assert snapshot(process.out).match() }
22+
)
23+
}
24+
25+
}
26+
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"Should run without failures": {
3+
"content": [
4+
{
5+
"0": [
6+
"genome.filtered.gtf:md5,aa8b2aa1e0b5fbbba3b04d471e1b0535"
7+
],
8+
"1": [
9+
"versions.yml:md5,4adf55ec05d247fd6d253459bd80856f"
10+
],
11+
"genome_gtf": [
12+
"genome.filtered.gtf:md5,aa8b2aa1e0b5fbbba3b04d471e1b0535"
13+
],
14+
"versions": [
15+
"versions.yml:md5,4adf55ec05d247fd6d253459bd80856f"
16+
]
17+
}
18+
],
19+
"meta": {
20+
"nf-test": "0.8.4",
21+
"nextflow": "23.10.1"
22+
},
23+
"timestamp": "2024-03-06T15:52:37.977802"
24+
}
25+
}

0 commit comments

Comments
 (0)