Skip to content
Snippets Groups Projects
Commit dd8a7f70 authored by Véronique  LEGRAND's avatar Véronique LEGRAND
Browse files

Merge branch 'dev_nanopore' of https://gitlab.pasteur.fr/vlegrand/ROCK into dev_nanopore

parents a0014ac6 bc0eb8fc
No related branches found
No related tags found
No related merge requests found
Pipeline #154431 failed
...@@ -136,7 +136,10 @@ public: ...@@ -136,7 +136,10 @@ public:
free(o_buf); free(o_buf);
o_buf=NULL; o_buf=NULL;
} }
delete cur_fq_record; if (cur_fq_record !=NULL) {
delete cur_fq_record;
cur_fq_record=NULL;
}
} }
void openInputFile(char * ficname, unsigned char id); void openInputFile(char * ficname, unsigned char id);
...@@ -147,11 +150,7 @@ public: ...@@ -147,11 +150,7 @@ public:
void openOutputFile(); void openOutputFile();
void writeToOutput(const unsigned long&); void writeToOutput(const unsigned long&);
void closeOutputFile(); void closeOutputFile();
/*void setUndefFile(char * ficname);
void openUndefFile();
void writeStrToUndefFile(char * start_in_buf, int len);
void writeToUndefFile(const T_buf_info& buf_info,const int& addCR=0);
void closeUndefFile();*/
static void setQualThreshold(const FasqQualThreshold& a_qual_thres){ static void setQualThreshold(const FasqQualThreshold& a_qual_thres){
FqBaseBackend::qual_thres.min_correct_k_mers_in_read=a_qual_thres.min_correct_k_mers_in_read; FqBaseBackend::qual_thres.min_correct_k_mers_in_read=a_qual_thres.min_correct_k_mers_in_read;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment