Open OjongTabi opened 3 months ago
HI @OjongTabi
Can you calculate the overlap of your regions and the promoter regions:
promoter_annotation = genome_annotation.copy()
promoter_annotation["End"] = promoter_annotation["Start"] + promoter_space
promoter_annotation["Start"] = promoter_annotation["Start"] - promoter_space
Best,
Seppe
HI @OjongTabi
Can you calculate the overlap of your regions and the promoter regions:
promoter_annotation = genome_annotation.copy() promoter_annotation["End"] = promoter_annotation["Start"] + promoter_space promoter_annotation["Start"] = promoter_annotation["Start"] - promoter_space
Best,
Seppe
I get into the same bug. I tested the overlap of one of my regions bed files (30,000+ regions) and the promoter regions (promoter_space = 1000), I found there were 20,000+ overlapped regions. So I cannot figure out the reason causing the bug.
Issue:
ValueError: No objects to concatenate
duringmotif_enrichment_dem
ExecutionDescription: While running the
motif_enrichment_dem
command, I encountered aValueError: No objects to concatenate
. The error suggests that there might be an issue with the input files or parameters, but all files appear to be correctly populated and formatted. The specific section of the code where the error occurs is within theget_foreground_and_background_regions
function inpycistarget
.