File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,6 +51,22 @@ Input:
5151 sample2 /path/to/your/file2.vcf
5252
5353Optional input:
54+ * --input_bams: a tab-separated values file containing in each row the sample name and path to a BAM file for VAFator annotations
55+ The input file does not have header!
56+ Example input file:
57+ sample1 primary:/path/to/your/file.vcf
58+ sample1 metastasis:/path/to/your/file2.vcf
59+ * --input_purities: a tab-separated values file containing in each row the sample name and a purity value for VAFator annotations
60+ The input file does not have header!
61+ Example input file:
62+ sample1 primary:0.5
63+ sample1 metastasis:0.6
64+ * --input_clonalities: a tab-separated values file containing in each row the sample name and a either a
65+ genome-wide clonality value or a Bedgraph file with local clonality values for VAFator annotations
66+ The input file does not have header!
67+ Example input file:
68+ sample1 primary:3
69+ sample1 metastasis:/path/to/metastasis.local_clonalities.bed
5470 * --reference: path to the FASTA genome reference (indexes expected *.fai, *.dict) [required for normalization]
5571 * --vcf-without-ad: indicate when the VCFs to normalize do not have the FORMAT/AD annotation
5672 * --output: the folder where to publish output
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ include { VARIANT_ANNOTATION } from './modules/05_variant_annotation'
1010
1111params. help= false
1212params. input_vcfs = false
13+ params. input_vcf = false
1314
1415// optional VAFator inputs
1516params. input_bams = false
16- params. input_vcf = false
1717params. input_purities = false
1818params. input_clonalities = false
1919
Original file line number Diff line number Diff line change @@ -55,6 +55,22 @@ Input:
5555 sample2 /path/to/your/file2.vcf
5656
5757Optional input:
58+ * --input_bams: a tab-separated values file containing in each row the sample name and path to a BAM file for VAFator annotations
59+ The input file does not have header!
60+ Example input file:
61+ sample1 primary:/path/to/your/file.vcf
62+ sample1 metastasis:/path/to/your/file2.vcf
63+ * --input_purities: a tab-separated values file containing in each row the sample name and a purity value for VAFator annotations
64+ The input file does not have header!
65+ Example input file:
66+ sample1 primary:0.5
67+ sample1 metastasis:0.6
68+ * --input_clonalities: a tab-separated values file containing in each row the sample name and a either a
69+ genome-wide clonality value or a Bedgraph file with local clonality values for VAFator annotations
70+ The input file does not have header!
71+ Example input file:
72+ sample1 primary:3
73+ sample1 metastasis:/path/to/metastasis.local_clonalities.bed
5874 * --reference: path to the FASTA genome reference (indexes expected *.fai, *.dict) [required for normalization]
5975 * --output: the folder where to publish output
6076 * --skip_normalization: flag indicating to skip all normalization steps
You can’t perform that action at this time.
0 commit comments