Skip to content

Commit a259f41

Browse files
committed
update help
1 parent c26e822 commit a259f41

3 files changed

Lines changed: 33 additions & 1 deletion

File tree

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,22 @@ Input:
5151
sample2 /path/to/your/file2.vcf
5252
5353
Optional 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

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ include { VARIANT_ANNOTATION } from './modules/05_variant_annotation'
1010

1111
params.help= false
1212
params.input_vcfs = false
13+
params.input_vcf = false
1314

1415
// optional VAFator inputs
1516
params.input_bams = false
16-
params.input_vcf = false
1717
params.input_purities = false
1818
params.input_clonalities = false
1919

nextflow.config

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,22 @@ Input:
5555
sample2 /path/to/your/file2.vcf
5656
5757
Optional 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

0 commit comments

Comments
 (0)