Close the BEDGRAPH file
| 54 | |
| 55 | // Close the BEDGRAPH file |
| 56 | void BedGraphFile::Close() { |
| 57 | if (bedGraphFile != "stdin" && bedGraphFile != "-") { |
| 58 | if (_bedGraphStream) { |
| 59 | delete _bedGraphStream; |
| 60 | _bedGraphStream = NULL ; |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected