Skip to content
Snippets Groups Projects
Commit 821253a0 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Fix assigned reads extraction

parent 11a742a3
Branches
Tags
2 merge requests!37v0.0.1,!36Metadata output update
Pipeline #7790 failed with stages
in 1 minute and 51 seconds
......@@ -877,7 +877,7 @@ process countData {
echo -e "LOG: counted" >> ${repRID}.countData.log
# extract assigned reads
assignedReads=grep -m 1 'Assigned' *.countData.summary | grep -oe '\([0-9.]*\)'
assignedReads=grep -m 1 'Assigned' *.countData.summary | grep -oe '\\([0-9.]*\\)'
echo -e \${assignedReads} > assignedReads.csv
echo -e "LOG: assigned reads: "\${assignedReads} >> ${repRID}.countData.log
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment