| 3375 | } |
| 3376 | |
| 3377 | void GenomeCopyNumber::printPloidy(std::string const& outFile) { |
| 3378 | std::ofstream file (outFile.c_str()); |
| 3379 | printPloidy(file); |
| 3380 | file.close(); |
| 3381 | } |
| 3382 | |
| 3383 | void GenomeCopyNumber::printPloidy(std::ofstream & file) { |
| 3384 | file << "Sample ploidy is " << ploidy_ << " with p-value " << ploidy_pvalue_ << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected