4
4
echo First run
5
5
$NXF_RUN --save_bam_bai | tee stdout
6
6
7
- [[ ` grep INFO .nextflow.log | grep -c 'Submitted process > fastqc'` == 3 ]] || false
8
- [[ ` grep INFO .nextflow.log | grep -c 'Submitted process > align'` == 3 ]] || false
9
- [[ ` grep INFO .nextflow.log | grep -c 'Submitted process > quant'` == 3 ]] || false
7
+ [[ $( grep INFO .nextflow.log | grep -c 'Submitted process > fastqc') == 3 ]] || false
8
+ [[ $( grep INFO .nextflow.log | grep -c 'Submitted process > align') == 3 ]] || false
9
+ [[ $( grep INFO .nextflow.log | grep -c 'Submitted process > quant') == 3 ]] || false
10
10
11
- [[ -f results/fastqc /alpha.fastqc.log ]] || false
12
- [[ -f results/fastqc /beta.fastqc.log ]] || false
13
- [[ -f results/fastqc /delta.fastqc.log ]] || false
11
+ [[ -f results/log /alpha.fastqc.log ]] || false
12
+ [[ -f results/log /beta.fastqc.log ]] || false
13
+ [[ -f results/log /delta.fastqc.log ]] || false
14
14
[[ -f results/align/alpha.bai ]] || false
15
15
[[ -f results/align/alpha.bam ]] || false
16
16
[[ -f results/align/beta.bai ]] || false
@@ -21,6 +21,7 @@ $NXF_RUN --save_bam_bai | tee stdout
21
21
[[ -L results/quant/beta ]] || false
22
22
[[ -L results/quant/delta ]] || false
23
23
[[ -f results/samples.csv ]] || false
24
+ [[ -f results/summary.txt ]] || false
24
25
25
26
26
27
#
@@ -29,13 +30,13 @@ $NXF_RUN --save_bam_bai | tee stdout
29
30
echo Second run
30
31
$NXF_RUN --save_bam_bai | tee stdout
31
32
32
- [[ ` grep INFO .nextflow.log | grep -c 'Submitted process > fastqc'` == 3 ]] || false
33
- [[ ` grep INFO .nextflow.log | grep -c 'Submitted process > align'` == 3 ]] || false
34
- [[ ` grep INFO .nextflow.log | grep -c 'Submitted process > quant'` == 3 ]] || false
33
+ [[ $( grep INFO .nextflow.log | grep -c 'Submitted process > fastqc') == 3 ]] || false
34
+ [[ $( grep INFO .nextflow.log | grep -c 'Submitted process > align') == 3 ]] || false
35
+ [[ $( grep INFO .nextflow.log | grep -c 'Submitted process > quant') == 3 ]] || false
35
36
36
- [[ -f results/fastqc /alpha.fastqc.log ]] || false
37
- [[ -f results/fastqc /beta.fastqc.log ]] || false
38
- [[ -f results/fastqc /delta.fastqc.log ]] || false
37
+ [[ -f results/log /alpha.fastqc.log ]] || false
38
+ [[ -f results/log /beta.fastqc.log ]] || false
39
+ [[ -f results/log /delta.fastqc.log ]] || false
39
40
[[ -f results/align/alpha.bai ]] || false
40
41
[[ -f results/align/alpha.bam ]] || false
41
42
[[ -f results/align/beta.bai ]] || false
@@ -46,6 +47,7 @@ $NXF_RUN --save_bam_bai | tee stdout
46
47
[[ -L results/quant/beta ]] || false
47
48
[[ -L results/quant/delta ]] || false
48
49
[[ -f results/samples.csv ]] || false
50
+ [[ -f results/summary.txt ]] || false
49
51
50
52
51
53
#
@@ -56,13 +58,13 @@ rm -rf results
56
58
57
59
$NXF_RUN --save_bam_bai -resume | tee stdout
58
60
59
- [[ ` grep INFO .nextflow.log | grep -c 'Cached process > fastqc'` == 3 ]] || false
60
- [[ ` grep INFO .nextflow.log | grep -c 'Cached process > align'` == 3 ]] || false
61
- [[ ` grep INFO .nextflow.log | grep -c 'Cached process > quant'` == 3 ]] || false
61
+ [[ $( grep INFO .nextflow.log | grep -c 'Cached process > fastqc') == 3 ]] || false
62
+ [[ $( grep INFO .nextflow.log | grep -c 'Cached process > align') == 3 ]] || false
63
+ [[ $( grep INFO .nextflow.log | grep -c 'Cached process > quant') == 3 ]] || false
62
64
63
- [[ -f results/fastqc /alpha.fastqc.log ]] || false
64
- [[ -f results/fastqc /beta.fastqc.log ]] || false
65
- [[ -f results/fastqc /delta.fastqc.log ]] || false
65
+ [[ -f results/log /alpha.fastqc.log ]] || false
66
+ [[ -f results/log /beta.fastqc.log ]] || false
67
+ [[ -f results/log /delta.fastqc.log ]] || false
66
68
[[ -f results/align/alpha.bai ]] || false
67
69
[[ -f results/align/alpha.bam ]] || false
68
70
[[ -f results/align/beta.bai ]] || false
@@ -73,3 +75,4 @@ $NXF_RUN --save_bam_bai -resume | tee stdout
73
75
[[ -L results/quant/beta ]] || false
74
76
[[ -L results/quant/delta ]] || false
75
77
[[ -f results/samples.csv ]] || false
78
+ [[ -f results/summary.txt ]] || false
0 commit comments