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

Fix syntax.

parent f0fbf42b
Branches
Tags
1 merge request!5Resolve "Add mapping and trimming"
......@@ -2,16 +2,15 @@
import pytest
import os
import gzip
def test_trim_reads_singleend():
raw_fastq = os.path.dirname(os.path.abspath(__file__)) +
'../../test_data/ENCFF833BLU_fastq.gz')
trimmed_fastq = os.path.dirname(os.path.abspath(__file__)) +
'../output/trimReads/ENCFF833BLU_trimmed.fq.gz')
trimmed_fastq_report = os.path.dirname(os.path.abspath(__file__)) +
'../output/trimReads/ENCFF833BLU.fastq.gz_trimming_report.txt')
raw_fastq = os.path.dirname(os.path.abspath(__file__)) + \
'../../test_data/ENCFF833BLU_fastq.gz'
trimmed_fastq = os.path.dirname(os.path.abspath(__file__)) + \
'../output/trimReads/ENCFF833BLU_trimmed.fq.gz'
trimmed_fastq_report = os.path.dirname(os.path.abspath(__file__)) + \
'../output/trimReads/ENCFF833BLU.fastq.gz_trimming_report.txt'
assert os.path.getsize(raw_fastq) != os.path.getsize(trimmed_fastq)
assert os.path.getsize(trimmed_fastq) == 2512853101
assert 'Trimming mode: single-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