Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into dev
  • Loading branch information
kubranarci committed Dec 1, 2023
1 parent b086ef3 commit b53e255
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ We thank the following people for their extensive assistance in the development
**TODO**

<!-- TODO nf-core: If applicable, make list of people who have also contributed -->

Nagarajan Paramasivam @NagaComBio [email protected]

## Contributions and Support
Expand All @@ -193,7 +194,6 @@ If you would like to contribute to this pipeline, please see the [contributing g

## Citations


<!-- If you use nf-platypusindelcalling for your analysis, please cite it using the following doi: [10.5281/zenodo.XXXXXX](https://doi.org/10.5281/zenodo.XXXXXX) -->

<!-- TODO nf-core: Add bibliography of tools and data used in your pipeline -->
Expand Down
104 changes: 52 additions & 52 deletions assets/schema_input.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/ghga-de/nf-platypusindelcalling/master/assets/schema_input.json",
"title": "nf-platypusindelcalling pipeline - params.input schema",
"description": "Schema for the file provided with params.input",
"type": "array",
"items": {
"type": "object",
"properties": {
"sample": {
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Sample name must be provided and cannot contain spaces"
},
"tumor": {
"type": "string",
"pattern": "^\\S+\\.bam$",
"errorMessage": "BAM file for tumors must be provided'"
},
"tumor_index": {
"type": "string",
"pattern": "^\\S+\\.bai$",
"errorMessage": "BAI file matching to BAM for tumors must be provided'"
},
"control": {
"errorMessage": "BAM file for as control matching to tumor, if there is",
"anyOf": [
{
"type": "string",
"pattern": "^\\S+\\.bam$"
},
{
"type": "string",
"maxLength": 0
}
]
},
"control_index": {
"errorMessage": "BAI file matching to BAM for as control matching to tumor, if there is",
"anyOf": [
{
"type": "string",
"pattern": "^\\S+\\.bai$"
},
{
"type": "string",
"maxLength": 0
}
]
}
},
"required": ["sample", "tumor", "tumor_index"]
}
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/ghga-de/nf-platypusindelcalling/master/assets/schema_input.json",
"title": "nf-platypusindelcalling pipeline - params.input schema",
"description": "Schema for the file provided with params.input",
"type": "array",
"items": {
"type": "object",
"properties": {
"sample": {
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Sample name must be provided and cannot contain spaces"
},
"tumor": {
"type": "string",
"pattern": "^\\S+\\.bam$",
"errorMessage": "BAM file for tumors must be provided'"
},
"tumor_index": {
"type": "string",
"pattern": "^\\S+\\.bai$",
"errorMessage": "BAI file matching to BAM for tumors must be provided'"
},
"control": {
"errorMessage": "BAM file for as control matching to tumor, if there is",
"anyOf": [
{
"type": "string",
"pattern": "^\\S+\\.bam$"
},
{
"type": "string",
"maxLength": 0
}
]
},
"control_index": {
"errorMessage": "BAI file matching to BAM for as control matching to tumor, if there is",
"anyOf": [
{
"type": "string",
"pattern": "^\\S+\\.bai$"
},
{
"type": "string",
"maxLength": 0
}
]
}
},
"required": ["sample", "tumor", "tumor_index"]
}
}

0 comments on commit b53e255

Please sign in to comment.