Skip to content

Commit

Permalink
issue in parsing of gz files
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam R. Rivers committed Jul 25, 2018
1 parent f37ad93 commit b0e17d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itsxpress/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def _check_fastqs(fastq, fastq2=None):
"""
def core(file):
try:
if file.endswith('.gz.'):
if file.endswith('.gz'):
f = gzip.open(file, 'rt')
else:
f = open(file, 'r')
Expand Down

0 comments on commit b0e17d4

Please sign in to comment.