Description

A module for decompressing a large number of gzipped files, getting around the UNIX terminal argument limit

Input

name:type
description
pattern

meta

:map

Groovy Map containing sample information e.g. [ id:‘test’, single_end:false ]

files_in

:file

List of gzipped files to decompress

*.gz

Output

name:type
description
pattern

file_out

meta

:map

Groovy Map containing sample information e.g. [ id:'sample1', single_end:false ]

*

ungzipped/*

:file

Files that have been decompressed

*

versions_find

${task.process}

:string

The process the versions were collected from

find

:string

The tool name

find --version | sed '1!d; s/.* //'

:eval

The expression to obtain the version of the tool

versions_pigz

${task.process}

:string

The process the versions were collected from

pigz

:string

The tool name

pigz --version 2>&1 | sed "s/^.*pigz[[:space:]]*//"

:eval

The expression to obtain the version of the tool

Topics

name:type
description
pattern

versions

${task.process}

:string

The process the versions were collected from

find

:string

The tool name

find --version | sed '1!d; s/.* //'

:eval

The expression to obtain the version of the tool

${task.process}

:string

The process the versions were collected from

pigz

:string

The tool name

pigz --version 2>&1 | sed "s/^.*pigz[[:space:]]*//"

:eval

The expression to obtain the version of the tool

Tools

find
GPL-3.0-or-later

GNU find searches the directory tree rooted at each given starting-point by evaluating the given expression

pigz
other

pigz, which stands for Parallel Implementation of GZip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data.