-
Notifications
You must be signed in to change notification settings - Fork 27
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
Merging template updates #160
Conversation
Ok this is ready to be merged, once the bug fix for the nfcore schema is integrated into the template. |
it seems the last test in the CI doesn't complete even everything is done already: |
Hey @Leon-Bichmann this needs to be updated under Settings > Branches > Tick or untick the relevant tests. I think you have write rights to the repo so it should work for you as well |
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.
Found a few things, but mostly looking good.
Lots is about the fact that you don't use --genome
, but now I get to the end I'm not sure if that's even the case or not 😅 Feel free to ignore if not.
nextflow.config
Outdated
@@ -44,6 +51,10 @@ params { | |||
variant_snp_filter = false | |||
outdir = './results' | |||
|
|||
validate_params = true | |||
show_hidden_params = false | |||
schema_ignore_params = 'genomes,input_paths' |
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.
If not using --genome
schema_ignore_params = 'genomes,input_paths' | |
schema_ignore_params = 'input_paths' |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
Co-authored-by: Phil Ewels <[email protected]>
…chmann/MHCquant into merging-template-updates
@ewels - same here everything passed, but I guess I wait to include the 1.13.3 template updates still |
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 the questions about stripping --genome
stuff if you're not using it, plus a little schema tidying would be nice, otherwise looks great 👍🏻
main.nf
Outdated
// Check if genome exists in the config file | ||
if (params.genomes && params.genome && !params.genomes.containsKey(params.genome)) { | ||
exit 1, "The provided genome '${params.genome}' is not available in the iGenomes file. Currently the available genomes are ${params.genomes.keySet().join(', ')}" | ||
} |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
nextflow.config
Outdated
@@ -44,6 +51,10 @@ params { | |||
variant_snp_filter = false | |||
outdir = './results' | |||
|
|||
validate_params = true | |||
show_hidden_params = false | |||
schema_ignore_params = 'genomes,input_paths' |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
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.
Very nearly!
Co-authored-by: Phil Ewels <[email protected]>
Co-authored-by: Phil Ewels <[email protected]>
…chmann/MHCquant into merging-template-updates
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.
Looking great! Again you've got an empty schema group but I'll sort that out in another PR for you now.
Thanks for your patience 🙏🏻
PR checklist
CHANGELOG.md
is updateddocs
is updated