-
Notifications
You must be signed in to change notification settings - Fork 4
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
Json schema improvements #51
base: dev
Are you sure you want to change the base?
Conversation
I've also checked the schema_input.json and I didn't find anything that needed to be altered |
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.
Thanks for this PR! I agree with adding tests of file existence, but I am questioning the need for the other changes...
@@ -17,13 +17,13 @@ | |||
"format": "file-path", | |||
"exists": true, | |||
"schema": "assets/schema_input.json", | |||
"mimetype": "text/csv", | |||
"pattern": "^\\S+\\.csv$", | |||
"pattern": "^\\S+\\.(csv|tsv|json|yaml|yml)$", |
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 think that we should stay restricted on .csv
suffix as long as we only support the text/csv
format.
@@ -152,22 +153,22 @@ | |||
}, | |||
"skip_dotplot_o2m": { | |||
"type": "boolean", | |||
"description": "Do not generate the one-to-many alignment dot-plot.", | |||
"description": "This option tells the pipeline to not generate the one-to-many alignment dot-plot.", |
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 would prefer to keep the description short. Other descriptions do not start with "This option tells the pipeline to". Can you leave that change out or suggest something more specific and concise?
PR checklist
nf-core pipelines lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,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).