nf-core_modules/software/bedtools/complement/main.nf

19 lines
354 B
Text
Raw Normal View History

process BEDTOOLS_COMPLEMENT {
2020-07-14 13:50:35 +00:00
tag {input_file}
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
input:
path (input_file)
path (fasta_sizes)
val (bedtools_complement_args)
2020-07-14 13:50:35 +00:00
output:
stdout()
2020-07-14 13:50:35 +00:00
script:
"""
bedtools complement -i ${input_file} -g ${fasta_sizes} ${bedtools_complement_args}
2020-07-14 13:50:35 +00:00
"""
}