enum to flag the state of a given line in a BEDGraph file.
| 89 | |
| 90 | // enum to flag the state of a given line in a BEDGraph file. |
| 91 | enum BedGraphLineStatus |
| 92 | { |
| 93 | BEDGRAPH_INVALID = -1, |
| 94 | BEDGRAPH_HEADER = 0, |
| 95 | BEDGRAPH_BLANK = 1, |
| 96 | BEDGRAPH_VALID = 2 |
| 97 | }; |
| 98 | |
| 99 | |
| 100 | //************************************************ |
nothing calls this directly
no outgoing calls
no test coverage detected