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

Fix assigned read extraction

parent de7d66a6
Branches
Tags
2 merge requests!37v0.0.1,!36Metadata output update
Pipeline #7800 failed with stages
in 1 hour, 17 minutes, and 28 seconds
......@@ -877,7 +877,7 @@ process countData {
echo -e "LOG: counted" >> ${repRID}.countData.log
# extract assigned reads
grep -m 1 'Assigned' *.countData.summary | grep -oe '\\([0-9.]*\\)') > assignedReads.csv
grep -m 1 'Assigned' *.countData.summary | grep -oe '\\([0-9.]*\\)' > assignedReads.csv
# calculate TPM from the resulting countData table
echo -e "LOG: calculating TPM with R" >> ${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