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

alntools: escape awk $

parent c91b17fb
No related branches found
No related tags found
No related merge requests found
......@@ -22,10 +22,10 @@ process bam2ec {
script:
"""
awk -F"\t" '
$3=="exon"
\$3=="exon"
{
ID=substr($9, length($9)-16, 15);
L[ID]+=$5-$4+1
ID=substr(\$9, length(\$9)-16, 15);
L[ID]+=\$5-\$4+1
}
END{
for(i in L)
......
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