comparative-genomics-project/workflow/modules/gunzip.nf

13 lines
182 B
Plaintext
Raw Normal View History

2024-10-28 10:46:05 +01:00
process GUNZIP {
input:
path zipped_file
output:
path zipped_file.baseName
script:
"""
gunzip -c "${zipped_file}" > "${zipped_file.baseName}"
"""
}