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

Add in test for testing map reads singleend.

parent de0f2837
Branches
Tags
1 merge request!5Resolve "Add mapping and trimming"
Pipeline #1050 failed with stage
in 1 hour, 7 minutes, and 52 seconds
#!/usr/bin/env python3
import pytest
import os
def test_map_reads_singleend():
aligned_reads_report = os.path.dirname(os.path.abspath(__file__)) + \
'../output/alignReads/ENCFF646LXU.srt.bam.flagstat.qc'
samtools_report = open(aligned_reads_report).readlines()
assert '80795025' in samtools_report[1]
assert '80050072' in samtools_report[5]
def test_map_reads_pairedend():
# Do the same thing for paired end data
pass
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