Man page - velvetoptimiser(1)
Packages contains this manual
apt-get install velvetoptimiser
Manual
VELVETOPTIMISER
NAMESYNOPSIS
DESCRIPTION
OPTIONS
Examples are:
NAME
velvetoptimiser - Automatically optimise Velvet do novo assembly parameters
SYNOPSIS
velvetoptimiser [ options ] -f βvelveth input lineβ
DESCRIPTION
VelvetOptimiser is a multi-threaded Perl script for automatically optimising the three primary parameter options (K, -exp_cov, -cov_cutoff) for the Velvet de novo sequence assembler.
OPTIONS
|
--help |
This help. |
--version !
Print version to stdout and exit. (default β0β).
--v |verbose+
Verbose logging, includes all velvet output in the logfile. (default β0β).
--s |hashs=i
The starting (lower) hash value (default β19β).
--e |hashe=i
The end (higher) hash value (default β31β).
--x |step=i
The step in hash search.. min 2, no odd numbers (default β2β).
|
--f |velvethfiles=s The file section of the velveth command line. (default β0β). |
--a |amosfile!
Turn on velvetβs read tracking and amos file output. (default β0β).
--o |velvetgoptions=s Extra velvetg options to pass through.
eg. -long_mult_cutoff -max_coverage etc (default ββ).
--t |threads=i
The maximum number of simultaneous velvet instances to run. (default β4β).
--g
|genomesize=f The
approximate size of the genome to be assembled in
megabases.
Only used in memory use estimation. If not specified, memory use estimation will not occur. If memory use is estimated, the results are shown and then program exits. (default β0β).
|
--k |optFuncKmer=s The optimisation function used for k-mer choice. (default βn50β). |
|
|
--c |optFuncCov=s The optimisation function used for cov_cutoff optimisation. (default βLbpβ). |
|
|
--m |minCovCutoff=f The minimum cov_cutoff to be used. (default β0β). |
--p |prefix=s
The prefix for the output filenames, the default is the date and time in the format DD-MM-YYYY-HH-MM_. (default βautoβ).
|
--d |dir_final=s The name of the directory to put the final output into. (default β.β). |
|
|
--z |upperCovCutoff=f The maximum coverage cutoff to consider as a multiplier of the expected coverage. (default β0.8β). |
Advanced!: Changing the optimisation function(s)
Velvet optimiser assembly optimisation function can be built from the following variables.
LNbp = The total number of Ns in large contigs Lbp = The total number of base pairs in large contigs Lcon = The number of large contigs max = The length of the longest contig n50 = The n50 ncon = The total number of contigs tbp = The total number of basepairs in contigs
Examples are:
βLbpβ = Just the total basepairs in contigs longer than 1kb βn50*Lconβ = The n50 times the number of long contigs. βn50*Lcon/tbp+log(Lbp)β = The n50 times the number of long contigs divided
by the total bases in all contigs plus the log of the number of bases in long contigs.