13 lines
182 B
Plaintext
13 lines
182 B
Plaintext
|
process GUNZIP {
|
||
|
input:
|
||
|
path zipped_file
|
||
|
|
||
|
output:
|
||
|
path zipped_file.baseName
|
||
|
|
||
|
script:
|
||
|
"""
|
||
|
gunzip -c "${zipped_file}" > "${zipped_file.baseName}"
|
||
|
"""
|
||
|
}
|