-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfigManta.py.ini
57 lines (44 loc) · 2.67 KB
/
configManta.py.ini
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
#
# This section contains all configuration settings for the top-level manta workflow,
#
[manta]
referenceFasta = /illumina/development/Isis/Genomes/Homo_sapiens/UCSC/hg19/Sequence/WholeGenomeFasta/genome.fa
# Run discovery and candidate reporting for all SVs/indels at or above this size
# Separate option (to provide different default) used for runs in RNA-mode
minCandidateVariantSize = 0
rnaMinCandidateVariantSize = 0
# Remove all edges from the graph unless they're supported by this many 'observations'.
# Note that one supporting read pair or split read usually equals one observation, but evidence is sometimes downweighted.
minEdgeObservations = 0
# If both nodes of an edge have an edge count higher than this, then skip evaluation of the edge.
# Set to 0 to turn this filtration off
graphNodeMaxEdgeCount = 0
# Run discovery and candidate reporting for all SVs/indels with at least this
# many spanning support observations
minCandidateSpanningCount = 0
# After candidate identification, only score and report SVs/indels at or above this size:
minScoredVariantSize = 0
# minimum VCF "QUAL" score for a variant to be included in the diploid vcf:
minDiploidVariantScore = 0
# VCF "QUAL" score below which a variant is marked as filtered in the diploid vcf:
minPassDiploidVariantScore = 0
# minimum genotype quality score below which single samples are filtered for a variant in the diploid vcf:
minPassDiploidGTScore = 0
# somatic quality scores below this level are not included in the somatic vcf:
minSomaticScore = 0
# somatic quality scores below this level are filtered in the somatic vcf:
minPassSomaticScore = 0
# Remote read retrieval is used ot improve the assembly of putative insertions by retrieving any mate reads in remote
# locations with poor mapping quality, which pair to confidently mapping reads near the insertion locus. These reads
# can help to fully assemble longer insertions, under certain circumstances this feature can add a very large runtime
# burden. For instance, given the very high chimeric pair rates found in degraded FFPE samples, the runtime of the read
# retrieval process can be unpredicable. For this reason the feature is disabled by default for somatic variant calling.
# This feature can be enabled/disabled separately for germline and cancer calling below.
#
# Here "CancerCallingModes" includes tumor-normal subtraction and tumor-only calling. "GermlineCallingModes" includes
# all other calling modes.
enableRemoteReadRetrievalForInsertionsInGermlineCallingModes = 1
enableRemoteReadRetrievalForInsertionsInCancerCallingModes = 0
# Set if an overlapping read pair will be considered as evidence
# Set to 0 to skip overlapping read pairs
useOverlapPairEvidence = 0