Skip to content
Snippets Groups Projects
Commit 4c4e5ab7 authored by christine.tranchant_ird.fr's avatar christine.tranchant_ird.fr
Browse files

fix bug mergeflagstats

parent 48dcc6a7
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ rule merge_flagstat:
for line in stat:
line = line.rstrip()
if 'mapped (' in line or ('paired (' in line and not 'primary' in line) or 'singleton' in line:
if ('mapped (' in line and not 'primary' in line) or 'paired (' in line or 'singleton' in line:
# print(line.split('(')[1].split('%')[0])
newLine += f",{line.split('(')[1].split('%')[0]}"
......
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