Skip to content

Commit c5c8117

Browse files
committed
Fix fastq filetype heuristic
1 parent 9535627 commit c5c8117

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/workflow_manifest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,8 @@ def path_to_location(input_item, root):
238238
location = input_item["location"]
239239
if "fastq.gz" in location:
240240
filetype = "fastqsanger.gz"
241+
elif "fastqsanger.gz" in location:
242+
filetype = "fastqsanger.gz"
241243
elif "fastq" in location:
242244
filetype = "fastqsanger"
243245
elif "fasta.gz" in location:

0 commit comments

Comments
 (0)