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

Add in trim reads paired end.

parent 0b4b9966
No related merge requests found
......@@ -23,5 +23,11 @@ def test_trim_reads_singleend():
@pytest.mark.integration
def test_trim_reads_pairedend():
# Do the same thing for paired end data
pass
raw_fastq = test_data_path + 'ENCFF582IOZ.fastq.gz'
trimmed_fastq = test_output_path + ' ENCFF582IOZ_val_2.fq.gz'
trimmed_fastq_report = test_output_path + \
'ENCFF582IOZ.fastq.gz_trimming_report.txt'
assert os.path.getsize(raw_fastq) != os.path.getsize(trimmed_fastq)
assert os.path.getsize(trimmed_fastq) == 2229312710
assert 'Trimming mode: paired-end' in open(trimmed_fastq_report).readlines()[4]
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