Skip to content

Commit 8a7e32d

Browse files
committed
Add print statements
1 parent 0af207b commit 8a7e32d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tools/TagSort/src/metricgatherer.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ MetricGatherer::MetricGatherer(std::string metric_output_file,
1515
std::string gtf_file,
1616
std::string mitochondrial_gene_names_filename)
1717
{
18+
std::cout<<"Constructor for metric gatherer called.\n";
1819
// get list of mitochondrial genes
1920
if (gtf_file.empty())
2021
crash("MetricGatherer needs a non-empty gtf_file name!");
@@ -322,6 +323,8 @@ GeneMetricGatherer::GeneMetricGatherer(std::string metric_output_file,
322323
std::string mitochondrial_gene_names_filename)
323324
: MetricGatherer(metric_output_file, gtf_file, mitochondrial_gene_names_filename)
324325
{
326+
327+
std::cout<<"Constructor for gene metric gatherer called.\n";
325328
// write metrics csv header
326329
std::string s;
327330
for (int i=0; i<25; i++)

0 commit comments

Comments
 (0)