We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d36646 commit 6d5bf04Copy full SHA for 6d5bf04
workflow/scripts/DupMasker_bed9.py
@@ -31,7 +31,7 @@ def hex_to_rgb(h):
31
color = pd.read_csv(args.infile, sep="\t", dtype=d_types)
32
# these rows are no good, they come from contigs that have messed up results. fix TODO
33
bad = ((color["chr"] == "0") & (color["chrEnd"] == "#BEBEBE")) | (
34
- color["chrStart"] == 0 & color["chrEnd"] == 0
+ (color["chrStart"] == 0) & (color["chrEnd"] == 0)
35
)
36
color.drop(color[bad].index, inplace=True)
37
0 commit comments