-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
@tzcoolman, looks like the fastq parser does not account for single \…
…n lines #reviewthis please
- Loading branch information
Roman Valls Guimera
committed
Jun 29, 2014
1 parent
2ff56a5
commit a79ec85
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a79ec85
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brainstorm Line 345 expects an UNIX or DOS style new lines. I thought OSX fastq files share exactly the same format as UNIX fastq files. Can you give me an example of how OSX fastq files looks like? (especially the '\n' and '\0' in OSX?)
a79ec85
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brainstorm when you say NULL? you mean the 'next_job' you print after line 344? next_job is either the position of next job to be handled or the end of all jobs. I think NULL is correct since strchr (start_point, '\0') is looking for a 'NULL' char, which is '\0'. Does it give the incorrect result when it is used on OSX?
a79ec85
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, disregard this issue, I was hunting for the real bug and it seems to be the behaviour of the python C-extension in OSX (works in Linux). I'm trying to fix it by migrating to SWIG instead.