Skip to content

Commit 3b91fa0

Browse files
committed
error when no seg snps between pops
1 parent 5bee815 commit 3b91fa0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

project/stat_modules/sumstats.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ def FST(self):
230230
try:
231231
stats_ls.extend(flt)
232232
except TypeError:
233-
breakpoint()
233+
flt = [np.nan]*len(quants)
234+
stats_ls.extend(flt)
234235
return stats_ls
235236

236237
def dXY(self):

0 commit comments

Comments
 (0)