-
Notifications
You must be signed in to change notification settings - Fork 38
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
Refactoring of code to remove it from main and more #213
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.
LGTM - just left a minor comment!
@@ -30,11 +30,11 @@ process RUN_ALPHAFOLD2_PRED { | |||
|
|||
output: | |||
path ("${fasta.baseName}*") | |||
tuple val(meta), path ("${meta.id}_alphafold2.pdb"), emit: main_pdb | |||
tuple val(meta), path ("${meta.id}_alphafold2.pdb") , emit: top_ranked_pdb |
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.
should we use here the prefix instead of meta id directly? So that the user could customize
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.
Good spot! However I am not sure if we are using it to create the reports, will check and if not will update in a new PR 😄
@@ -30,11 +30,11 @@ process RUN_ALPHAFOLD2_PRED { | |||
|
|||
output: | |||
path ("${fasta.baseName}*") | |||
tuple val(meta), path ("${meta.id}_alphafold2.pdb"), emit: main_pdb | |||
tuple val(meta), path ("${meta.id}_alphafold2.pdb") , emit: top_ranked_pdb | |||
tuple val(meta), path ("${fasta.baseName}/ranked*pdb"), emit: pdb |
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.
same here?
@@ -29,7 +29,7 @@ process RUN_ALPHAFOLD2 { | |||
|
|||
output: | |||
path ("${fasta.baseName}*") | |||
tuple val(meta), path ("${meta.id}_alphafold2.pdb"), emit: main_pdb | |||
tuple val(meta), path ("${meta.id}_alphafold2.pdb") , emit: top_ranked_pdb |
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.
same
This PR contains:
oras
to point tohttps
.Closes #183
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).CHANGELOG.md
is updated.