comparison configs/Nanopore-OldGuppy-Sep2020.conf @ 0:60573349e9ae draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta commit 6d14992ea4fb1af09373d51b3a48166afcbd3a74"
author iuc
date Wed, 11 Nov 2020 21:54:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:60573349e9ae
1 # This file contains Shasta options which attempt to partially automate
2 # parameter selection. It is based on an earlier config, which, as of Jun 2020,
3 # was known to work with Oxford Nanopore reads under the following circumstances:
4
5 # - Human genome assembly.
6 # - Coverage between 40x and 80x. If you have more coverage than that,
7 # you can use option "--Reads.minReadLength" to adjust coverage as desired.
8 # - Reads from Guppy 3.0.5 base caller. Also known to work with
9 # reads from other Guppy releases 3.0.x and 3.1.x.
10
11 # The automation provided by this config is particularly applicable to
12 # low coverage or non-human samples. It also matches or exceeds continuity
13 # in human samples, relative to the appropriately chosen config file.
14 # Updating to guppy 3.6.0 or higher will greatly improve assembly
15 # quality and is therefore strongly recommended.
16
17 # To use this configuration file, specify Shasta option
18 # "--config AbsolutePathToThisFile".
19 # If you specify any conflicting values on the command line,
20 # the values specified on the command line take precedence.
21
22 # In most cases, for best performance on a large assembly
23 # you will usually also want to use the following options, which
24 # cannot be specified in a configuration file:
25 # --memoryMode filesystem
26 # --memoryBacking 2M
27 # Using these options requires root access.
28
29 # For detailed information on all available options see here:
30 # https://chanzuckerberg.github.io/shasta/CommandLineOptions.html
31
32 # For information on running a small assembly for which
33 # performance is not essential see here:
34 # https://chanzuckerberg.github.io/shasta/QuickStart.html
35
36 # For more information on running an assembly see here:
37 # https://chanzuckerberg.github.io/shasta/Running.html
38
39 # For information on optimizing assembly performance see here:
40 # https://chanzuckerberg.github.io/shasta/Performance.html
41
42
43
44 [Reads]
45 # If you have extra coverage, use this option to adjust coverage.
46 minReadLength = 10000
47 noCache = True
48
49 [MinHash]
50 minBucketSize = 5
51 maxBucketSize = 30
52 minFrequency = 5
53
54 [Align]
55 alignMethod = 3
56 downsamplingFactor = 0.05
57 matchScore = 6
58 sameChannelReadAlignment.suppressDeltaThreshold = 30
59
60 # The following Align parameters are set to very permissive values to allow the majority of alignments
61 # to be assessed during the initial stage of automatic alignment parameter selection
62 maxSkip = 100
63 maxDrift = 100
64 maxTrim = 100
65 minAlignedMarkerCount = 10
66 minAlignedFraction = 0.1
67
68 [ReadGraph]
69 # This method uses the observed distribution of alignment stats to choose a cutoff for
70 # maxSkip, maxDrift, maxTrim, minAlignedMarkerCount, and minAlignedFraction
71 creationMethod = 2
72
73 [MarkerGraph]
74 simplifyMaxLength = 10,100,1000,10000,100000
75 crossEdgeCoverageThreshold = 3
76
77 # Automatically determine this using PeakFinder
78 minCoverage = 0
79
80 [Assembly]
81 consensusCaller = Bayesian:guppy-3.0.5-a
82 detangleMethod = 2
83