Skip to content

Commit

Permalink
Merge pull request #118 from nf-core/117-input-bcf-formatted-files
Browse files Browse the repository at this point in the history
add bcf to input
  • Loading branch information
kubranarci authored Dec 5, 2024
2 parents e26667d + ca2236a commit f25f4d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ Applying filtering on the process of benchmarking itself might makes it impossib
10. Include or exclude SNVs and INDELs ([bcftools filter](https://samtools.github.io/bcftools/bcftools.html#filter))
11. Size and quality filtering for SVs ([SURVIVOR filter](https://github.com/fritzsedlazeck/SURVIVOR/wiki))

### Liftover of truth sets:
### Liftover of vcfs:

This sub-workflow provides option to convert genome coordinates of truth VCF and high confidence BED file to a new assembly. Golden standard truth files are build upon specific reference genomes which makes the necessity of lifting over depending on the test VCF in query.
This sub-workflow provides option to convert genome coordinates of truth VCF and high confidence BED file to a new assembly. Golden standard truth files are build upon specific reference genomes which makes the necessity of lifting over depending on the test VCF in query. Lifting over one or more test vcfs is also possible.

12. Create sequence dictionary for the reference ([picard CreateSequenceDictionary](https://gatk.broadinstitute.org/hc/en-us/articles/360037068312-CreateSequenceDictionary-Picard)). This file can be saved and reused.
13. Lifting over truth variants ([picard LiftoverVcf](https://gatk.broadinstitute.org/hc/en-us/articles/360037060932-LiftoverVcf-Picard))
Expand Down
4 changes: 2 additions & 2 deletions assets/schema_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"test_vcf": {
"type": "string",
"exists": true,
"pattern": "\\S+\\.vcf(\\.gz)?$",
"pattern": "\\S+\\.(vcf|bcf)(\\.gz)?$",
"format": "file-path",
"errorMessage": "Test VCF must be provided, cannot contain spaces and must have extension '.vcf.gz' or '.vcf'",
"errorMessage": "Test VCF must be provided, cannot contain spaces and must have extension '.vcf.gz', '.vcf', '.bcf.gz' or 'bcf'",
"description": "The VCF file to use as benchmarking test input"
},
"id": {
Expand Down

0 comments on commit f25f4d8

Please sign in to comment.