You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO nf-core: Once you have added the required tests, please run the following command to build this file:
2
+
// nf-core modules test awk
3
+
nextflow_process {
4
+
5
+
name "Test Process AWK"
6
+
script "../main.nf"
7
+
process "AWK"
8
+
9
+
tag "modules"
10
+
tag "modules_"
11
+
tag "awk"
12
+
13
+
// TODO nf-core: Change the test name preferably indicating the test-data and file-format used
14
+
test("sarscov2 - bam") {
15
+
16
+
// TODO nf-core: If you are created a test for a chained module
17
+
// (the module requires running more than one process to generate the required output)
18
+
// add the 'setup' method here.
19
+
// You can find more information about how to use a 'setup' method in the docs (https://nf-co.re/docs/contributing/modules#steps-for-creating-nf-test-for-chained-modules).
20
+
21
+
when {
22
+
process {
23
+
"""
24
+
// TODO nf-core: define inputs of the process here. Example:
0 commit comments