Skip to content

Commit

Permalink
fix arg
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Jan 19, 2024
1 parent cd2b4f8 commit 9f2bf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spatial_sc/gene_tpm_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def collect_genes(db, sample_counts):
exon_count += 1
transcript_lengths.append(tlen)
if exon_count > 1: spliced = True
gene_dict[gene.id] = GeneInfo(gene.id, max(transcript_lengths), spliced)
gene_dict[gene.id] = GeneInfo(gene.id, max(transcript_lengths), spliced, sample_counts)
return gene_dict


Expand Down

0 comments on commit 9f2bf59

Please sign in to comment.