Skip to content

Commit 6d5bf04

Browse files
committed
fixed dupmakser bed script for double tabs?
1 parent 1d36646 commit 6d5bf04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/scripts/DupMasker_bed9.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def hex_to_rgb(h):
3131
color = pd.read_csv(args.infile, sep="\t", dtype=d_types)
3232
# these rows are no good, they come from contigs that have messed up results. fix TODO
3333
bad = ((color["chr"] == "0") & (color["chrEnd"] == "#BEBEBE")) | (
34-
color["chrStart"] == 0 & color["chrEnd"] == 0
34+
(color["chrStart"] == 0) & (color["chrEnd"] == 0)
3535
)
3636
color.drop(color[bad].index, inplace=True)
3737

0 commit comments

Comments
 (0)