-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvcf2vcf.template
More file actions
16 lines (16 loc) · 1.23 KB
/
vcf2vcf.template
File metadata and controls
16 lines (16 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"inputVCF" : {
"class" : "File",
"path": "</full/file/path>" # Required file; replace '</full/file/path>' with full path to input VCF [e.g., /my/path/to/input.vcf]
},
"refFasta" : {
"class" : "File",
"path": "</full/file/path>" # Required file; replace '</full/file/path>' with full path to reference FASTA [e.g., /my/path/to/genome.fa.gz]
},
"outputVCF" : null, # Optional string: replace 'null' with output file name; 'null' defaults to 'output.vcf'
"addFilters" : "false", # Optional boolean; replace 'false' with 'true' to add some extra tags under the FILTER column of the MAF; 'null' defaults to 'true'
"vcfNormalID" : null, # Optional string; matched normal ID used in the input VCF; 'null' defaults to 'NORMAL'
"vcfTumorID" : null, # Optional string; tumor ID used in the input VCF; 'null' defaults to 'TUMOR'
"newNormalID" : null, # Optional string; matched normal ID to use in the new VCF; 'null' defaults to 'vcfNormalID' setting
"newTumorID" : null # Optional string; tumor ID to use in the new VCF; 'null' defaults to 'vcfTumorID' setting
}