Open a-ludi opened 5 years ago
Thanks! Gene
On 1/16/19, 12:16 PM, Arne wrote:
When trying to simulate reads from hg38 I got "Genome length is less than shortest read length !" which of course is not true.
The issue was an signed integer overflow which is easily fixed using the appropriate type |int64| in line 316.
You can view, comment on, or merge this pull request online at:
https://github.com/thegenemyers/DAZZ_DB/pull/38
Commit Summary
Bugfix in simulator
File Changes
M simulator.c https://github.com/thegenemyers/DAZZ_DB/pull/38/files#diff-0 (8)
Patch Links:
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/thegenemyers/DAZZ_DB/pull/38, or mute the thread https://github.com/notifications/unsubscribe-auth/AGkkNl43gRJPOhOu0QPCU8Fx4vFySk5hks5vDwnwgaJpZM4aC113.
When trying to simulate reads from hg38 I got "Genome length is less than shortest read length !" which of course is not true.
The issue was an signed integer overflow which is easily fixed using the appropriate type
int64
in line 316.