Mercurial > repos > dfornika > snippy
diff snippy_core_wrapper.pl @ 19:8a6b951f6ec2 draft
planemo upload for repository https://github.com/tseemann/snippy commit 80a4218b47696bea243b4092823739a578ea8652-dirty
author | dfornika |
---|---|
date | Thu, 24 Jan 2019 14:19:32 -0500 |
parents | 1a3c85497d96 |
children | 3bbfe41787af |
line wrap: on
line diff
--- a/snippy_core_wrapper.pl Tue Jan 22 14:48:36 2019 -0500 +++ b/snippy_core_wrapper.pl Thu Jan 24 14:19:32 2019 -0500 @@ -18,7 +18,7 @@ use File::Copy; use File::Basename; -my(@Options, $indirs, $ref); +my(@Options, $indirs, $noref); setOptions(); my @list_of_dirs = split /\s+/, $indirs; @@ -44,7 +44,7 @@ my $commandline = "snippy-core "; -$commandline .= " --ref $ref " if $ref; +$commandline .= "--noref " if $noref; $commandline .= join(" ", @snippy_outs); print STDERR "snippy-core commandline: $commandline\n"; @@ -58,7 +58,7 @@ @Options = ( {OPT=>"help", VAR=>\&usage, DESC=>"This help"}, - {OPT=>"ref=s", VAR=>\$ref, DEFAULT=>"", DESC=>"Reference genome."}, + {OPT=>"noref!", VAR=>\$noref, DEFAULT=>0, DESC=>"Don't include the reference in the alignment."}, {OPT=>"indirs=s", VAR=>\$indirs, DEFAULT=>"", DESC=>"A whitespace delimited list of the snippy output zipped dirs."}, );