-
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
clonal_threshold accepts multiple values in nextflow_schema.json #293
clonal_threshold accepts multiple values in nextflow_schema.json #293
Conversation
|
Errr help. I haven't changed that much stuff here, it shouldn't be failing this badly? |
nextflow_schema.json
Outdated
"symlink", | ||
"rellink", | ||
"link", | ||
"copy", | ||
"copyNoFollow", | ||
"move" |
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.
"symlink", | |
"rellink", | |
"link", | |
"copy", | |
"copyNoFollow", | |
"move" | |
"copy", | |
"copyNoFollow", | |
"link", | |
"move", | |
"rellink", | |
"symlink" |
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 comes from the pipeline template, so best would be to fix it there, as otherwise I'm gonna have conflicts here next time 😄
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 just like things to be properly ordered...
@adamrtalbot thanks for figuring out the issue with the |
Doh, I need to fix that. Something up with my editor because this has happened before. If you merge in the template update I can rebase this branch. |
<3 |
The nextflow_schema.json used invalid JSON schema for clonal_threshold which accepts two types of values. This PR changes it to use the
oneOf
and some validation instead of a list.Fixes #292
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).