Skip to content
Snippets Groups Projects
Verified Commit 59f8cb0a authored by Laurent Modolo's avatar Laurent Modolo
Browse files

nf_modules: add ucsc bg to bw fix output

parent b16d01fc
No related branches found
No related tags found
No related merge requests found
......@@ -11,10 +11,11 @@ process bedgraph_to_bigwig {
tuple val(file_id) path(bed)
output:
tuple val(file_id), path("*.bw"), emit: fasta
tuple val(file_id), path("*.bw"), emit: bw
script:
"""
LC_COLLATE=C
# transform bed file of start-stop chromosome size to stop chromosome size
awk -v OFS="\\t" '{print \$1, \$3}' ${bed} > chromsize.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment