We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c43645 commit e62e5a5Copy full SHA for e62e5a5
1 file changed
seqchromloader/utils.py
@@ -83,6 +83,8 @@ def stats(self, chrom, type='mean', exact=True):
83
return float(np.max(arr))
84
elif type == 'min':
85
return float(np.min(arr))
86
+ elif type == 'std':
87
+ return float(np.std(arr))
88
else:
89
raise NotImplementedError(f"stat {type} not implemented for memmap backend")
90
0 commit comments