forked from edawson/bam-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bam-matcher.default.conf
64 lines (48 loc) · 1.83 KB
/
bam-matcher.default.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# BAM-matcher configuration file
# All parameters are in the format:
# KEYWORD: VALUE
## DO NOT REMOVE SECTION HEADERS (e.g. [Variantcallers])
## DO NOT REMOVE PARAMETER KEYWORDS
# If not setting a specific parameter, just leave it blank, rather than deleting or commenting out the line
# Missing parameter keywords will generate errors
[VariantCallers]
# file paths to variant callers and other binaries
# This is the default caller to use (gatk3, gatk4, freebayes, or varscan)
caller: freebayes
# These are paths (or commands) to the caller executables
# full paths is always required for *.jar files (GATK3, GATK4 and VarScan2)
# sometime you may need to specify full path to the binary (for freebayes, samtools and java)
gatk3:
gatk4:
freebayes: freebayes
samtools: samtools
varscan:
java: java
[ScriptOptions]
DP_threshold: 15
number_of_SNPs:
# fast_freebayes enables --targets option for Freebayes, faster but more prone to Freebayes errors
# set to False will use --region, each variant is called separately
fast_freebayes: True
# This is the file containing variant positions to use for genotype calling
# The format of the variant genomic positions must match the default reference (REFERENCE)
# not the alternate reference (REF_ALTERNATE)
VCF_file: _VCFTARGET_
[VariantCallerParameters]
# GATK memory usage in GB
GATK_MEM: 4
# GATK threads (-nt)
GATK_nt: 1
# VarScan memory usage in GB
VARSCAN_MEM: 4
[GenomeReference]
# default reference fasta file
REFERENCE: _FASTATARGET_
REF_ALTERNATE:
# CHROM_MAP is required if using two different genome references that have different (but compatible) chromosome names
# this is mainly to deal with the hg19 "chr" issue
CHROM_MAP:
[BatchOperations]
# you MUST specify a cache directory, this directory should be read/write-able by all BAM-matcher users
CACHE_DIR: _CACHETARGET_
[Miscellaneous]