From 8be891f1a52162a7a3c7f9a4ef7eb4c2d85086c2 Mon Sep 17 00:00:00 2001 From: abonin Date: Tue, 28 Jun 2016 09:42:30 +0200 Subject: [PATCH] Comments out the call to uncompress to allow compilation on windows --- ROBITools/src/ecoseq.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ROBITools/src/ecoseq.c b/ROBITools/src/ecoseq.c index 8157ee3..3ae24ab 100644 --- a/ROBITools/src/ecoseq.c +++ b/ROBITools/src/ecoseq.c @@ -134,11 +134,11 @@ ecoseq_t *readnext_ecoseq(FILE *f) seq->SQ = ECOMALLOC(seqlength+1, "Allocate sequence buffer"); - comp_status = uncompress((unsigned char*)seq->SQ, - &seqlength, - (unsigned char*)compressed, - raw->CSQ_length); - +// comp_status = uncompress((unsigned char*)seq->SQ, +// &seqlength, +// (unsigned char*)compressed, +// raw->CSQ_length); +// if (comp_status != Z_OK) ECOERROR(ECO_IO_ERROR,"I cannot uncompress sequence data");