Mercurial > repos > dereeper > roary_plots
annotate Roary/t/bin/dummy_makeblastdb @ 2:3f98630a0c20 draft
Deleted selected files
| author | dereeper |
|---|---|
| date | Fri, 12 Nov 2021 16:30:50 +0000 |
| parents | c47a5f61bc9f |
| children |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env perl |
| 2 use Moose; | |
| 3 use Getopt::Long; | |
| 4 my($output_filename,$dbtype,$in,$logfile,$parse_seqids,$mask_data); | |
| 5 GetOptions( | |
| 6 'o|out=s' => \$output_filename, | |
| 7 'd|dbtype=s' => \$dbtype, | |
| 8 'l|logfile=s' => \$logfile, | |
| 9 'i|in=s' => \$in, | |
| 10 'mask_data=s' => \$mask_data, | |
| 11 ); | |
| 12 | |
| 13 system("touch $output_filename.phr"); | |
| 14 system("touch $output_filename.pin"); | |
| 15 system("touch $output_filename.psq"); | |
| 16 | |
| 17 1; |
