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

ucsc: update bigwig2_to_wig2 to match changes in bigwig_to_wig

parent 9f7c81b7
No related branches found
No related tags found
No related merge requests found
......@@ -74,11 +74,13 @@ process bigwig2_to_wig2 {
script:
"""
bigWigToWig ${params.bigwig_to_wig} \
bigWigToBedGraph ${params.bigwig_to_wig} \
${bw_a} \
${bw_a.simpleName}.wig
bigWigToWig ${params.bigwig_to_wig} \
${bw_a.simpleName}.bg
awk '{if(NR>1) {if(\$1!=lastChrom){printf("variableStep chrom=%s\\n",\$1);lastChrom=\$1;}print \$2,\$4}}' ${bw_a.simpleName}.bg > ${bw_a.simpleName}.wig
bigWigToBedGraph ${params.bigwig_to_wig} \
${bw_b} \
${bw_b.simpleName}.wig
${bw_b.simpleName}.bg
awk '{if(NR>1) {if(\$1!=lastChrom){printf("variableStep chrom=%s\\n",\$1);lastChrom=\$1;}print \$2,\$4}}' ${bw_b.simpleName}.bg > ${bw_b.simpleName}.wig
"""
}
\ No newline at end of file
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