-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/ghga-de/nf-platypusindelcalling
- Loading branch information
1 parent
b086ef3
commit b53e255
Showing
2 changed files
with
53 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} | ||
} |