Skip to content
Snippets Groups Projects
Commit e95c85b9 authored by Blaise Li's avatar Blaise Li
Browse files

Configurable gene lists for PRO-seq.

parent a1725563
No related branches found
No related tags found
No related merge requests found
...@@ -164,6 +164,7 @@ DE_BIOTYPES = [biotype for biotype in LFC_RANGE.keys() if biotype in COUNT_BIOTY ...@@ -164,6 +164,7 @@ DE_BIOTYPES = [biotype for biotype in LFC_RANGE.keys() if biotype in COUNT_BIOTY
#METAGENE_BIOTYPES = ["protein_coding"] #METAGENE_BIOTYPES = ["protein_coding"]
#METAGENE_BIOTYPES = ["protein_coding", "protein_coding_5UTR", "protein_coding_CDS", "protein_coding_3UTR"] #METAGENE_BIOTYPES = ["protein_coding", "protein_coding_5UTR", "protein_coding_CDS", "protein_coding_3UTR"]
METAGENE_BIOTYPES = [biotype for biotype in ["protein_coding", "protein_coding_5UTR", "protein_coding_CDS", "protein_coding_3UTR"] if biotype in COUNT_BIOTYPES] METAGENE_BIOTYPES = [biotype for biotype in ["protein_coding", "protein_coding_5UTR", "protein_coding_CDS", "protein_coding_3UTR"] if biotype in COUNT_BIOTYPES]
# default id lists for MA plots
ID_LISTS = [ ID_LISTS = [
"lfc_statuses", "lfc_statuses",
"germline_specific", "germline_specific",
...@@ -171,6 +172,7 @@ ID_LISTS = [ ...@@ -171,6 +172,7 @@ ID_LISTS = [
"spermatogenic_Ortiz_2014", "oogenic_Ortiz_2014", "spermatogenic_Ortiz_2014", "oogenic_Ortiz_2014",
"piRNA_dependent_prot_si_22G_down4_top200", "piRNA_dependent_prot_si_22G_down4", "piRNA_dependent_prot_si_22G_down4_top200", "piRNA_dependent_prot_si_22G_down4",
"csr1_prot_si_supertargets_common"] "csr1_prot_si_supertargets_common"]
ID_LISTS = config.get("maplot_gene_lists", ID_LISTS)
aligner = config["aligner"] aligner = config["aligner"]
######################## ########################
# Genome configuration # # Genome configuration #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment