mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-05 05:52:07 -05:00
18 lines
353 B
Text
18 lines
353 B
Text
process COMPLEMENT_BED {
|
|
tag {input_file}
|
|
|
|
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
|
|
|
|
input:
|
|
path (input_file)
|
|
path (fasta_sizes)
|
|
val (complementbed_args)
|
|
|
|
output:
|
|
stdout()
|
|
|
|
script:
|
|
"""
|
|
bedtools complement -i ${input_file} -g ${fasta_sizes} ${complementbed_args}
|
|
"""
|
|
}
|