Mercurial > repos > dereeper > roary_plots
view Roary/t/bin/dummy_mcl @ 0:c47a5f61bc9f draft
Uploaded
author | dereeper |
---|---|
date | Fri, 14 May 2021 20:27:06 +0000 |
parents | |
children |
line wrap: on
line source
#!/usr/bin/env perl use Moose; use Getopt::Long; my ($output_filename,$abc_format,$inflation); GetOptions( 'o|output=s' => \$output_filename, 'i|inflation=s' => \$inflation, 'a|abc' => \$abc_format ); system("touch $output_filename"); 1;