write the header for protein data
| 224 | |
| 225 | // write the header for protein data |
| 226 | void writeProteinHeader(SVOutStream& out) |
| 227 | { |
| 228 | bool old = out.modifyStrings(false); |
| 229 | out << "#PROTEIN" << "score" << "rank" << "accession" << "protein_description" << "coverage" |
| 230 | << "sequence"; |
| 231 | out.modifyStrings(old); |
| 232 | } |
| 233 | |
| 234 | // write the header for protein data |
| 235 | void writeProteinGroupHeader(SVOutStream& out) |