11#! /usr/bin/env nextflow
22
3- # Copyright (C) 2018 Leiden University Medical Center
4- # This file is part of pytest- workflow
5- #
6- # pytest- workflow is free software : you can redistribute it and/ or modify
7- # it under the terms of the GNU Affero General Public License as
8- # published by the Free Software Foundation , either version 3 of the
9- # License , or (at your option) any later version.
10- #
11- # pytest- workflow is distributed in the hope that it will be useful,
12- # but WITHOUT ANY WARRANTY ; without even the implied warranty of
13- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
14- # GNU Affero General Public License for more details.
15- #
16- # You should have received a copy of the GNU Affero General Public License
17- # along with pytest- workflow. If not, see < https :// www.gnu.org/licenses/
3+ /* Copyright (C) 2018 Leiden University Medical Center
4+ This file is part of pytest-workflow
185
19- # Nextflow using the Snakemake test file as example.
20- # Just a simple dummy pipeline that reads some data from / dev/ urandom,
21- # and does some transformations on it.
6+ pytest-workflow is free software: you can redistribute it and/or modify
7+ it under the terms of the GNU Affero General Public License as
8+ published by the Free Software Foundation, either version 3 of the
9+ License, or (at your option) any later version.
10+
11+ pytest-workflow is distributed in the hope that it will be useful,
12+ but WITHOUT ANY WARRANTY; without even the implied warranty of
13+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+ GNU Affero General Public License for more details.
15+
16+ You should have received a copy of the GNU Affero General Public License
17+ along with pytest-workflow. If not, see <https://www.gnu.org/licenses/
18+ */
19+
20+ /* Nextflow using the Snakemake test file as example.
21+ Just a simple dummy pipeline that reads some data from /dev/urandom,
22+ and does some transformations on it. */
2223
2324params. N_LINES_TO_READ = 5
2425
2526process read_random {
2627 publishDir = [
27- path : { " ${ params.outdir} /rand' }
28+ path : { " ${ params.outdir} /rand" }
2829 ]
2930
3031 input:
@@ -40,7 +41,7 @@ process read_random {
4041
4142process base64_random {
4243 publishDir = [
43- path: { "${ params.outdir} /b64' }
44+ path : { " ${ params.outdir} /b64" }
4445 ]
4546
4647 input:
@@ -57,7 +58,7 @@ process base64_random {
5758
5859process gzip_b64 {
5960 publishDir = [
60- path: { "${ params.outdir} /randgz' }
61+ path : { " ${ params.outdir} /randgz" }
6162 ]
6263
6364 input:
@@ -73,7 +74,7 @@ process gzip_b64 {
7374
7475process concat_gzip {
7576 publishDir = [
76- path: { "${ params.outdir} ' }
77+ path : { " ${ params.outdir} " }
7778 ]
7879
7980 input:
0 commit comments