Skip to content
Snippets Groups Projects
Commit 48c3a69e authored by Rohmer Coralie's avatar Rohmer Coralie
Browse files

fix total_data_format with tcoffee

parent 8efd580b
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,8 @@ for i in range(len(exp_names)): ...@@ -66,7 +66,8 @@ for i in range(len(exp_names)):
if re.search(NAME_DATA_FILE,filename): if re.search(NAME_DATA_FILE,filename):
search_meta_consensus=re.search(NAME_META_CONSENSUS,filename) search_meta_consensus=re.search(NAME_META_CONSENSUS,filename)
if ((search_meta_consensus and META_CONSENSUS) or (not search_meta_consensus and not META_CONSENSUS)): if ((search_meta_consensus and META_CONSENSUS) or (not search_meta_consensus and not META_CONSENSUS)):
threshold=filename.split(".")[0].split("_t")[1] threshold=filename.split(".")[0].split("_t")[-1]
print(threshold)
if (threshold not in files): if (threshold not in files):
files[threshold]={} files[threshold]={}
if (exp_names[i] not in files[threshold]): if (exp_names[i] not in files[threshold]):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment