File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,12 +106,12 @@ std::unique_ptr<MetricGatherer> maybeMakeMetricGatherer(INPUT_OPTIONS_TAGSORT co
106
106
if (options.metric_type == MetricType::Cell)
107
107
{
108
108
return std::make_unique<CellMetricGatherer>(
109
- options.metric_output_file , options. gtf_file ,
110
- options.mitochondrial_gene_names_filename );
109
+ options.metric_output_file , getTagOrder ( options),
110
+ options.gtf_file , options. mitochondrial_gene_names_filename );
111
111
}
112
112
else if (options.metric_type == MetricType::Gene)
113
- return std::make_unique<GeneMetricGatherer>(options.metric_output_file , options. gtf_file ,
114
- options.mitochondrial_gene_names_filename );
113
+ return std::make_unique<GeneMetricGatherer>(options.metric_output_file , getTagOrder ( options) ,
114
+ options.gtf_file , options. mitochondrial_gene_names_filename );
115
115
else if (options.metric_type == MetricType::Umi)
116
116
return std::make_unique<UmiMetricGatherer>(options.metric_output_file , getTagOrder (options),
117
117
options.gtf_file , options.mitochondrial_gene_names_filename );
You can’t perform that action at this time.
0 commit comments