-
Notifications
You must be signed in to change notification settings - Fork 9
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' into nf-core-template-merge-2.13
- Loading branch information
Showing
148 changed files
with
7,410 additions
and
794 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
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,3 +1,3 @@ | ||
sample,fastq_1,fastq_2 | ||
SAMPLE_PAIRED_END,/path/to/fastq/files/AEG588A1_S1_L002_R1_001.fastq.gz,/path/to/fastq/files/AEG588A1_S1_L002_R2_001.fastq.gz | ||
SAMPLE_SINGLE_END,/path/to/fastq/files/AEG588A4_S4_L003_R1_001.fastq.gz, | ||
test_vcf,caller,vartype | ||
"https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/illumina/gatk/haplotypecaller_calls/test2_haplotc.vcf.gz",mutect,sv | ||
"https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/illumina/vcf/sv_query.vcf.gz",unknown,sv |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
test_vcf,caller,vartype | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg37/dragen_paper/HG002_delly_SV_hg19.vcf.gz",delly,sv | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg37/dragen_paper/HG002_lumpy_SV_hg19.sorted.vcf.gz",lumpy,sv | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg37/dragen_paper/HG002_manta_SV_hg19_genotype2.vcf",manta,sv | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg37/Broad_svaba_05052017/full.svaba.germline.sv.vcf",svaba,sv |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
test_vcf,caller,vartype | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg38/GIAB_GRCh38_SVs_06252018/ajtrio.lumpy.svtyper.HG002.md.sorted.recal.vcf.gz",lumpy,sv | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg38/GIAB_GRCh38_SVs_06252018/manta.HG002.vcf.gz",manta,sv | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg38/Ashkenazim_unnanotated/Ashkenazim_HG002.filtered.sv.vcf.gz",merged,sv | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg38/HG002_DRAGEN_SV_hg19.vcf.gz",dragen,sv | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
test_vcf,caller | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg38/SEQC_somatic_mutation_truth/test/WGS.bwa.dedup-IL_T_1_vs_IL_N_1-Strelka.indel.vcf.gz",strelka | ||
"/Users/w620-admin/Desktop/nf-core/dataset/hg38/SEQC_somatic_mutation_truth/test/WGS.bwa.dedup-IL_T_1_vs_IL_N_1-MuTect2.vcf.gz",mutect2 |
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,33 +1,29 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://raw.githubusercontent.com/nf-core/variantbenchmarking/master/assets/schema_input.json", | ||
"title": "nf-core/variantbenchmarking 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", | ||
"meta": ["id"] | ||
}, | ||
"fastq_1": { | ||
"type": "string", | ||
"format": "file-path", | ||
"exists": true, | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$", | ||
"errorMessage": "FastQ file for reads 1 must be provided, cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'" | ||
}, | ||
"fastq_2": { | ||
"type": "string", | ||
"format": "file-path", | ||
"exists": true, | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$", | ||
"errorMessage": "FastQ file for reads 2 cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'" | ||
} | ||
}, | ||
"required": ["sample", "fastq_1"] | ||
} | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://raw.githubusercontent.com/nf-core/variantbenchmarking/master/assets/schema_input.json", | ||
"title": "nf-core/variantbenchmarking pipeline - params.input schema", | ||
"description": "Schema for the file provided with params.input", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"test_vcf": { | ||
"type": "string", | ||
"pattern": "", | ||
"errorMessage": "Test VCF must be provided, cannot contain spaces and must have extension '.vcf.gz'" | ||
}, | ||
"caller": { | ||
"type": "string", | ||
"pattern": "^\\S+$", | ||
"errorMessage": "Name of the variant caller used to generate test file" | ||
}, | ||
"vartype": { | ||
"type": "string", | ||
"pattern": "^\\S+$", | ||
"errorMessage": "Variant type to benchmark" | ||
} | ||
|
||
}, | ||
"required": ["test_vcf","caller","vartype"] | ||
} | ||
} |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
id: delly_$INFO/SVTYPE | ||
alt: | ||
BND: TRA | ||
info: | ||
CALLER: | ||
value: delly | ||
number: 1 | ||
type: string | ||
description: The caller used to determine this variant | ||
SVLEN: | ||
value: ~sub:$INFO/END,$POS | ||
number: 1 | ||
type: integer | ||
description: The length of the structural variant | ||
alts: | ||
DEL: -~sub:$INFO/END,$POS | ||
INS: $INFO/SVLEN | ||
TRA: 1 | ||
CIEND: | ||
value: $INFO/CIEND | ||
number: 2 | ||
type: integer | ||
description: PE confidence interval around END | ||
CIPOS: | ||
value: $INFO/CIPOS | ||
number: 2 | ||
type: integer | ||
description: PE confidence interval around POS | ||
SVTYPE: | ||
value: $INFO/SVTYPE | ||
number: 1 | ||
type: string | ||
description: Type of structural variant | ||
CHR2: | ||
value: | ||
number: 1 | ||
type: string | ||
description: Chromosome for second position | ||
alts: | ||
TRA: $INFO/CHR2 | ||
END: | ||
value: $INFO/END | ||
number: 1 | ||
type: integer | ||
description: End position of the structural variant | ||
alts: | ||
TRA: $INFO/POS2 | ||
IMPRECISE: | ||
value: $INFO/IMPRECISE | ||
number: 0 | ||
type: flag | ||
description: Imprecise structural variation | ||
format: | ||
GT: | ||
value: $FORMAT/GT | ||
number: 1 | ||
type: string | ||
description: Genotype | ||
PE: | ||
value: $FORMAT/DR,$FORMAT/DV | ||
number: 2 | ||
type: integer | ||
description: Paired-read support for the ref and alt alleles in the order listed | ||
SR: | ||
value: $FORMAT/RR,$FORMAT/RV | ||
number: 2 | ||
type: integer | ||
description: Split-read support for the ref and alt alleles in the order listed | ||
|
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
id: gridss_$INFO/SVTYPE | ||
info: | ||
CALLER: | ||
value: gridss | ||
number: 1 | ||
type: string | ||
description: The caller used to determine this variant | ||
SVLEN: | ||
value: ~sub:$INFO/END,$POS | ||
number: 1 | ||
type: integer | ||
description: The length of the structural variant | ||
alts: | ||
BND: | ||
TRA: 0 | ||
DEL: -~sub:$INFO/END,$POS | ||
CIEND: | ||
value: $INFO/CIRPOS | ||
number: 2 | ||
type: integer | ||
description: PE confidence interval around END | ||
CIPOS: | ||
value: $INFO/CIPOS | ||
number: 2 | ||
type: integer | ||
description: PE confidence interval around POS | ||
SVTYPE: | ||
value: $INFO/SVTYPE | ||
number: 1 | ||
type: string | ||
description: Type of structural variant | ||
CHR2: | ||
value: | ||
number: 1 | ||
type: string | ||
description: Chromosome for second position | ||
alts: | ||
TRA: $INFO/CHR2 | ||
END: | ||
value: $INFO/END | ||
number: 1 | ||
type: integer | ||
description: End position of the structural variant | ||
IMPRECISE: | ||
value: $INFO/IMPRECISE | ||
number: 0 | ||
type: flag | ||
description: Imprecise structural variation | ||
format: | ||
GT: | ||
value: $FORMAT/GT | ||
number: 1 | ||
type: string | ||
description: Genotype | ||
PE: | ||
value: $FORMAT/REFPAIR,$FORMAT/RP | ||
number: 2 | ||
type: integer | ||
description: Paired-read support for the ref and alt alleles in the order listed | ||
SR: | ||
value: .,$FORMAT/SR | ||
number: 2 | ||
type: integer | ||
description: Split-read support for the ref and alt alleles in the order listed | ||
|
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
id: manta_$INFO/SVTYPE | ||
info: | ||
CALLER: | ||
value: manta | ||
number: 1 | ||
type: string | ||
description: The caller used to determine this variant | ||
SVLEN: | ||
value: $INFO/SVLEN | ||
number: 1 | ||
type: integer | ||
description: The length of the structural variant | ||
alts: | ||
INS: ~sum:~len:LEFT_SVINSSEQ,~len:RIGHT_SVINSSEQ | ||
TRA: 1 | ||
CIEND: | ||
value: $INFO/CIEND | ||
number: 2 | ||
type: integer | ||
description: PE confidence interval around END | ||
CIPOS: | ||
value: $INFO/CIPOS | ||
number: 2 | ||
type: integer | ||
description: PE confidence interval around POS | ||
SVTYPE: | ||
value: $INFO/SVTYPE | ||
number: 1 | ||
type: string | ||
description: Type of structural variant | ||
CHR2: | ||
value: | ||
number: 1 | ||
type: string | ||
description: Chromosome for second position | ||
alts: | ||
TRA: $INFO/CHR2 | ||
END: | ||
value: $INFO/END | ||
number: 1 | ||
type: integer | ||
description: End position of the structural variant | ||
alts: | ||
TRA: $INFO/POS2 | ||
IMPRECISE: | ||
value: $INFO/IMPRECISE | ||
number: 0 | ||
type: flag | ||
description: Imprecise structural variation | ||
format: | ||
GT: | ||
value: $FORMAT/GT | ||
number: 1 | ||
type: string | ||
description: Genotype | ||
PE: | ||
value: $FORMAT/PR | ||
number: 2 | ||
type: integer | ||
description: Paired-read support for the ref and alt alleles in the order listed | ||
SR: | ||
value: $FORMAT/SR | ||
number: 2 | ||
type: integer | ||
description: Split-read support for the ref and alt alleles in the order listed | ||
|
Oops, something went wrong.