Skip to content

Commit

Permalink
corrected remove missing opt
Browse files Browse the repository at this point in the history
  • Loading branch information
henryjuho committed Nov 27, 2018
1 parent 2c62e3b commit e9af2f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get_out_of_bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def rm_missing(spp, seq):

spp_seqs = [y[pos] for y in seq]

if '-' in ''.join(spp_seqs) or '?' in ''.join(spp_seqs):
if 'N' in ''.join(spp_seqs) or '?' in ''.join(spp_seqs):
continue

trimmed_seqs = [trimmed_seqs[i] + spp_seqs[i] for i in range(0, n_spp)]
Expand Down

0 comments on commit e9af2f4

Please sign in to comment.