/usr/bin/combine_tradis_plots is in bio-tradis 1.3.3+dfsg-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/usr/bin/env perl
package Bio::Tradis::Bin::CombineTradisPlots;
# ABSTRACT: Combine multiple plotfiles and generate updated statistics for the combined files
# PODNAME: combine_tradis_plot
=head1 SYNOPSIS
Takes a tab-delimited file with an ID as the first column followed by
a list of plotfiles to combine per row. The ID will be used to name the new
plotfile and as an identifier in the stats file, so ensure these are unique.
=cut
BEGIN { unshift( @INC, '../lib' ) }
BEGIN { unshift( @INC, './lib' ) }
BEGIN { unshift( @INC, '/software/pathogen/internal/prod/lib/' ) }
use Bio::Tradis::CommandLine::PlotCombine;
Bio::Tradis::CommandLine::PlotCombine->new(args => \@ARGV, script_name => $0)->run;
|