Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix html and recursion #68

Merged
merged 12 commits into from
Oct 23, 2024
Merged
Prev Previous commit
Next Next commit
fix problem in UpSet init script when FASTAs were not renamed (bc GFF…
… input)
hoelzer committed Oct 22, 2024
commit 87e6af6cfc21b9c78f9d4fdb18193399a35eb3f0
5 changes: 4 additions & 1 deletion modules/generate_upsetr_input.nf
Original file line number Diff line number Diff line change
@@ -38,7 +38,10 @@ with open(input_file) as holytable:
strain = line.split('\\t')
my_list = strain[3:]
for i in my_list:
my_dict[i + '_RENAMED'] = []
if len(${params.annotation_file}) > 1:
my_dict[i] = []
else:
my_dict[i + '_RENAMED'] = []
else:
ids = line.split('\\t')
for x in line.split('\\t')[3:]: