-
Notifications
You must be signed in to change notification settings - Fork 12
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
Update modules #63
Update modules #63
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just suggested some small changes, nice job!
@@ -0,0 +1,3 @@ | |||
id,fasta,reference,structures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed or is it an error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just an extra file I am keeping now for testing - will remove it for the release :)
@@ -0,0 +1,25 @@ | |||
process MTMALIGN_ALIGN { | |||
tag "$meta.id" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even if it is a local module you could provide its biocontainer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is none at the moment, if you prefer i can remove the module from the PR but maybe we can leave it and solve it in the next PR ( i already have an issue open for it and i plan to make it an nf-core module :)
subworkflows/local/compute_trees.nf
Outdated
ch_fastas_fortrees = ch_fastas.combine(tree_tools) | ||
.map( it -> [it[0] + it[2], it[1]] ) | ||
.branch{ | ||
famsa_guidetree: it[0]["tree"] == "FAMSA_GUIDETREE" | ||
mbed: it[0]["tree"] == "MBED" | ||
famsa: it[0]["tree"] == "FAMSA" | ||
clustalo: it[0]["tree"] == "CLUSTALO" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ch_fastas_fortrees = ch_fastas.combine(tree_tools) | |
.map( it -> [it[0] + it[2], it[1]] ) | |
.branch{ | |
famsa_guidetree: it[0]["tree"] == "FAMSA_GUIDETREE" | |
mbed: it[0]["tree"] == "MBED" | |
famsa: it[0]["tree"] == "FAMSA" | |
clustalo: it[0]["tree"] == "CLUSTALO" | |
} | |
ch_fastas | |
.combine(tree_tools) | |
.map{ it -> [ it[0] + it[2], it[1] ] } | |
.branch { | |
famsa: it[0]["tree"] == "FAMSA" | |
clustalo: it[0]["tree"] == "CLUSTALO" | |
} | |
.set { ch_fastas_fortrees } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have anymore the branches mbed and famsa_guidetree. I changed the name convention to the name of the module as we discussed the other day in the meeting w/ Cedric :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah sorry, I copy pasted it wrongly, I was complaining about the formatting of the code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated the comment but double check I did it correctly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would not allow me to change it here directly. I changed it directly in the code and pushed again.
Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! 🚀
Closes #35, #45, #58, #60, #61
Add new modules (learnMSA and tcoffee align) from nf-core
Add local mtmalign module
Fix issues to enable structural alignments modes
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).