Skip to content
Snippets Groups Projects
Commit d03b78fc authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix map qc for paired-end data.

parent 28d2cd11
Branches
Tags
No related merge requests found
...@@ -34,7 +34,7 @@ STRIP_EXTENSIONS = ['.bam', '.srt'] ...@@ -34,7 +34,7 @@ STRIP_EXTENSIONS = ['.bam', '.srt']
def get_args(): def get_args():
'''Define arguments.''' '''Define arguments.'''
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=__doc__, epilog=EPILOG, description=__doc__, epilog=EPILOG,
formatter_class=argparse.RawDescriptionHelpFormatter) formatter_class=argparse.RawDescriptionHelpFormatter)
...@@ -232,7 +232,7 @@ def compute_complexity(bam, paired, bam_basename): ...@@ -232,7 +232,7 @@ def compute_complexity(bam, paired, bam_basename):
if paired: if paired:
steps = [ steps = [
"sambamba sort -t %d -n %s" % (cpu_count(), bam), "samtools sort -@%d -n %s" % (cpu_count(), bam),
"bamToBed -bedpe -i stdin", "bamToBed -bedpe -i stdin",
r"""awk 'BEGIN{OFS="\t"}{print $1,$2,$4,$6,$9,$10}'"""] r"""awk 'BEGIN{OFS="\t"}{print $1,$2,$4,$6,$9,$10}'"""]
else: else:
......
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