Comments out the call to uncompress to allow compilation on windows

This commit is contained in:
abonin
2016-06-28 09:42:30 +02:00
parent ffa9638359
commit 8be891f1a5

View File

@@ -134,11 +134,11 @@ ecoseq_t *readnext_ecoseq(FILE *f)
seq->SQ = ECOMALLOC(seqlength+1, seq->SQ = ECOMALLOC(seqlength+1,
"Allocate sequence buffer"); "Allocate sequence buffer");
comp_status = uncompress((unsigned char*)seq->SQ, // comp_status = uncompress((unsigned char*)seq->SQ,
&seqlength, // &seqlength,
(unsigned char*)compressed, // (unsigned char*)compressed,
raw->CSQ_length); // raw->CSQ_length);
//
if (comp_status != Z_OK) if (comp_status != Z_OK)
ECOERROR(ECO_IO_ERROR,"I cannot uncompress sequence data"); ECOERROR(ECO_IO_ERROR,"I cannot uncompress sequence data");