Skip to content
This repository was archived by the owner on Nov 9, 2023. It is now read-only.

Improve error message in parse.py. Closes #2113 #2114

Merged
merged 1 commit into from
May 3, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qiime/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
def is_casava_v180_or_later(header_line):
""" True if this file is generated by Illumina software post-casava 1.8 """
assert header_line.startswith('@'),\
"Non-header line passed as input. Header must start with '@'."
"Bad fastq file passed as input. Header line must start with '@'."
fields = header_line.split(':')
if len(fields) == 10 and fields[7] in 'YN':
return True
Expand Down