| 1073 | } |
| 1074 | |
| 1075 | void PairEndProcessor::writerTask(WriterThread* config) |
| 1076 | { |
| 1077 | while(true) { |
| 1078 | if(config->isCompleted()){ |
| 1079 | // last check for possible threading related issue |
| 1080 | config->output(); |
| 1081 | break; |
| 1082 | } |
| 1083 | config->output(); |
| 1084 | } |
| 1085 | |
| 1086 | if(mOptions->verbose) { |
| 1087 | string msg = config->getFilename() + " writer finished"; |
| 1088 | loginfo(msg); |
| 1089 | } |
| 1090 | } |
nothing calls this directly
no test coverage detected