| 344 | bool decoy; |
| 345 | |
| 346 | void setProt(sqlite3_stmt* stmt) |
| 347 | { |
| 348 | prot_id = Sql::extractInt(stmt, I_PROTID); |
| 349 | accession = Sql::extractString(stmt, I_ACCESSION); |
| 350 | decoy = Sql::extractBool(stmt, I_DECOY); |
| 351 | } |
| 352 | void updateProt(LineState& new_line) |
| 353 | { |
| 354 | prot_id = new_line.prot_id; |
no test coverage detected