Skip to content
Snippets Groups Projects
Commit 49f7a4af authored by nfontrod's avatar nfontrod
Browse files

src/db_utils/frequency_scripts/config_freq.py: modification of iupac_dic...

src/db_utils/frequency_scripts/config_freq.py: modification of iupac_dic variable : it links for each 'degenerated' nucleotides (SWKMRY) the nucleotides they can be
parent cd664ff4
No related branches found
No related tags found
No related merge requests found
......@@ -71,8 +71,8 @@ class Config_freq:
output = Config.results / 'frequency_table'
output_exon_file = output / 'exon_freq.txt'
output_gene_file = output / 'gene_freq.txt'
iupac_dic = {"S": ["G", "C"], "W": ["A", "T"], "K": ["G", "T"],
"M": ["A", "C"], "R": ["A", "G"], "Y": ["C", "T"]}
iupac_dic = {"S": "[GC]", "W": "[AT]", "K": "[GT]",
"M": "[AC]", "R": "[AG]", "Y": "[CT]"}
nt_list = compute_nt_list()
aa_list = list("RHKDESTNQCGPAVILMFYW")
codon_list = [nt for nt in nt_list if len(nt) == 3]
......
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