Commit b761cbe1 by Chloe Dequeker

modif bug in writing interfaces

parent b0265d4c
...@@ -281,10 +281,7 @@ void write_candidate(struct residue** t_candid, int sizeCand, FILE* output_strea ...@@ -281,10 +281,7 @@ void write_candidate(struct residue** t_candid, int sizeCand, FILE* output_strea
if(t_candid[i]->idRes[j] != ' '){ if(t_candid[i]->idRes[j] != ' '){
buf[k] = t_candid[i]->idRes[j]; buf[k] = t_candid[i]->idRes[j];
k++; k++;
}else if(k > 0){ } }
k--;
}
}
buf[k] = '\0'; buf[k] = '\0';
fprintf(output_stream,"'%s' '%c' ",buf,t_candid[i]->chain); fprintf(output_stream,"'%s' '%c' ",buf,t_candid[i]->chain);
fflush(output_stream); fflush(output_stream);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment