Commit bb42d87 1 parent 3cba946 commit bb42d87 Copy full SHA for bb42d87
File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,12 @@ reads=reads
23
23
fastq_gz =$(shell test -f $(reads ) .fq.gz && echo "true")
24
24
fastq =$(shell test -f $(reads ) .fq && echo "true")
25
25
fastq_long =$(shell test -f $(reads ) .fastq && echo "true")
26
+ fastq_long_gz =$(shell test -f $(reads ) .fastq.gz && echo "true")
26
27
27
28
fasta_gz =$(shell test -f $(reads ) .fa.gz && echo "true")
28
29
fasta =$(shell test -f $(reads ) .fa && echo "true")
29
30
fasta_long =$(shell test -f $(reads ) .fasta && echo "true")
31
+ fasta_long_gz =$(shell test -f $(reads ) .fasta.gz && echo "true")
30
32
31
33
ifeq ($(fastq_gz ) , true)
32
34
longreads =$(reads ) .fq.gz
37
39
ifeq ($(fastq_long ) , true)
38
40
longreads =$(reads ) .fastq
39
41
endif
42
+ ifeq ($(fastq_long_gz ) , true)
43
+ longreads =$(reads ) .fastq.gz
44
+ endif
40
45
41
46
ifeq ($(fasta_gz ) , true)
42
47
longreads =$(reads ) .fa.gz
47
52
ifeq ($(fasta_long ) , true)
48
53
longreads =$(reads ) .fasta
49
54
endif
55
+ ifeq ($(fasta_long_gz ) , true)
56
+ longreads =$(reads ) .fasta.gz
57
+ endif
50
58
51
59
# Reference genome, ref.fa, for calculating assembly contiguity metrics
52
60
ref =ref
You can’t perform that action at this time.
0 commit comments