Skip to content
Snippets Groups Projects
Commit 759679b3 authored by nfontrod's avatar nfontrod
Browse files

src/bed_handler/__main__.py: add a parameter include0 to include exons...

src/bed_handler/__main__.py: add a parameter include0 to include exons containing CTCF if wanted. Add a parameter near_ctcf that allows to recover regulated exons far from a CTCF site
parent aee24d7d
No related branches found
No related tags found
No related merge requests found
......@@ -17,16 +17,18 @@ def launcher():
"""
Create the necessary bed file to visualise bigwig file
"""
write_regulated_gene_file()
create_filtered_bed()
create_region_bed()
create_bed_ctcf_exon("down", 0, "both")
create_bed_ctcf_exon("down", 1000, "both")
create_bed_ctcf_exon("down", 2000, "both")
create_bed_ctcf_exon("down", 1000, "upstream")
create_bed_ctcf_exon("down", 2000, "upstream")
create_bed_ctcf_exon("down", 1000, "downstream")
create_bed_ctcf_exon("down", 2000, "downstream")
# write_regulated_gene_file()
# create_filtered_bed()
# create_region_bed()
create_bed_ctcf_exon("down", 0, "both", True)
create_bed_ctcf_exon("down", 1000, "both", False)
create_bed_ctcf_exon("down", 2000, "both", False)
create_bed_ctcf_exon("down", 2000, "both", True)
create_bed_ctcf_exon("down", 2000, "both", True, False)
create_bed_ctcf_exon("down", 1000, "upstream", False)
create_bed_ctcf_exon("down", 2000, "upstream", False)
create_bed_ctcf_exon("down", 1000, "downstream", False)
create_bed_ctcf_exon("down", 2000, "downstream", False)
launcher()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment